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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  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...
  16. Misled

    Apps. as a process-only

    I've never done it but I've seen a System tray example somewhere. Check the VB pages at microsoft or the development exchange(windx.com). Hope that helps.
  17. Misled

    VB 4.0 Setup Problem - OLEAUT32.DLL

    This problem usually occurs when a file is in use by another application. In your case you don't want to update it any way because the OLEAUT32.dll is older than the target system. If OLEAUT32 is on the target it already registered so don't worry about it. When you press ignore(I'm assuming the...
  18. Misled

    Installing on old ver of win95

    I have a out of process local server. We'll call it svrA. svrA is called from MsOutlook. svrA updates an Access database with data from the outlook form. Works fine on my development system (vb6 ). Works fine on my laptop (VB5 or VB6, I've upgraded it to VB6 since it didn't work somewhere, so I...
  19. Misled

    Tab Stops

    Sometimes I want to add text to a tree node for example. To keep them in a proper alignment, add it like : text & vbTab & text. Is there a way to change the length of the vbTab. I want to shorten it.
  20. Misled

    Drag-Drop with treeview control

    I'm using sheridan's treeview control which is supposed to be compatible with the one that comes with VB6. When I expand nodes or click on nodes it was invoking the drag event and moving nodes sometimes if I didn't keep the mouse still. I fixed it with a 500ms timer event which starts in the...

Part and Inventory Search

Back
Top