Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Misled

  1. Misled

    Data Grid Question

    I think you are talking about win grids..... The answer is in the TableStyles collection of the grid. You can create new table styles and apply it to the grid. During the process you will create columns and have the ability to change properties such as column name. Chris Dearing...
  2. Misled

    New to VB

    There are 3 versions of Visual Basic 6: Learning, Professional, and Enterpise. VB 6 also comes with Visual Studio. Visual Studio comes with Visual C++, VB6, Visual J++, and some other stuff too. Visual Basic requires win 95 or better, or windows NT. It is a program just like any other.You can...
  3. Misled

    Passing Objects to ActiveX Server

    I have 3 projects: 1. The user interface. 2. The UI Business objects. 3. An ActiveX server.<br> <br> I want to pass an object from the UI Business objects to the server. This server will not be known at run time, so I have to create the server with CreateObject. The server does have a reference...
  4. Misled

    ADO record sets. Does anybody know whats wrong with this code?

    It works fine with the DE as well. Commands in the DE automatically have a recordset associated with them preceeded with &quot;rs&quot;. Lets say you have a command called MyCommand. And you have a data environment called DE.<br> <br> Dim Rs as Adodb.Recordset<br> <br> With DE<br>...
  5. Misled

    Access DB--- Non-immediate updates. Why?

    I am using client side disconnected recordsets. Also, as I said, when I run the query the recordset is already updated with the new record but the query does not &quot;see&quot; the record until a few seconds later. FYI..... If you are looking at the table in access, use the VB program to add a...
  6. Misled

    Access DB--- Non-immediate updates. Why?

    Lets say I add a record to a table. Then I immediately fill a combo with records that include the new record. The record does not show up. However, if I wait a second or 2, re-run the query, then it will show up. Is there and option I can use with my query (I'm using ADO commands on an Access...
  7. Misled

    Access/VB question

    No. At least not easily. There might be a third party tool that will do it, but I doubt it. There is a third party tool that will import Access reports though.... VSReports
  8. Misled

    Question regarding the Pmt function...

    payment = Pmt(0.06 / 1, 15, amount)<br> <br> Should be:Payment = Pmt(0.06 , 15, amount)<br> <br> If there were 12 payments in a year:<br> <br> Payment = Pmt(0.06/12 , 15 * 12, amount)<br>
  9. Misled

    online vb teaching aids?

    There are what I'm going to call &quot;mechanics&quot; books and and &quot;philosphy&quot; books. Once you figure out the mechanics of the VB, move on to the philospfhy books. There are lots of mechanics books. <br> Using Visual Basic 6<br> Visual Basic 6 Unleashed<br> etc.<br> <br>...
  10. Misled

    Cursor types and the autonumber field with ADO/Remote acccess

    I am new to cursor types. If you use a client side cursor (Access Database), and add a new record, the autonumber field value is NOT immediately available (shows null). Works fine with server side and I understand the logic. However, how do most people deal with this? If using a client side...
  11. Misled

    Advice on DataEnvironment and DataReport

    The open object is a recordset. Examine the state property of the recordet before executing it. If it is open then close it and rerun report.
  12. Misled

    Creating a new record with JET ADO provider.

    The recordset does not have optomistic locking and openkeyset type (I had the same problem as you). The default is read only. You must set it manually or set it as such in the command you use from the DED. I have had a problem getting DED to do server side cursors. I can do server side manually...
  13. Misled

    Installing a program on NT. oleaut32.dll problem

    pwhysall,<br> I am a VB programmer. I wrote the program in VB 6. That dll needs updating. There are several internal to NT apps running. I stopped all client apps (outlook, office toolbar, other non-ms programs). He is on a network too. As I said, I am not an NT guru (yet). Any other ideas...
  14. Misled

    Installing a program on NT. oleaut32.dll problem

    When installing my program on a windows NT (written in VB) system, it aborts when trying to copy the oleaut32.dll file. I'm assuming the file is in use by NT, however I'm not an NT guru. I looked at the tasks list and services and could not tell which service or task to stop. Could someone tell...
  15. Misled

    NT Install Problem. Please help.

    When installing my program on a windows NT system, it aborts when trying to copy the oleaut32.dll file. I'm assuming the file is in use by NT, however I'm not an NT guru. I looked at the tasks list and services and could not tell which service or task to stop. Could someone tell me how to deal...

Part and Inventory Search

Back
Top