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 strongm 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. cindyray

    Need to rollback to old ODBC driver

    I have an application that is losing zeroes with the newer ODBC driver installed with service pack 3. The machines without service pack 3 installed do not have this problem. Is there a way to reinstall the older odbc driver. The machines that have the problem came with service pack 3...
  2. cindyray

    Package Wizard wants to include a file "2"

    Thanks for the reply. I am using regular expressions, so that might be the problem. I've used 2 different machines to package the program and both came up with the 2. I'll try adding the VBSCRIPT.DLL
  3. cindyray

    Package Wizard wants to include a file "2"

    When I'm packaging my program, the package wizard keeps coming up with a 2 as an include file that is not found. Is this a file I know nothing about, or some strange anomaly?
  4. cindyray

    Run-time error '3265'

    I have compiled my program, packaged it with Package and Deployment Wizard and installed it. I am using an adodc control with a datagrid. I think this error is happening when the control is refreshing.
  5. cindyray

    msado.tlb won't register

    I have an application that I have used PDW to package. It installs just fine, except that this file won't register and without this file, my program bombs. Any ideas on how to get it to register?
  6. cindyray

    msado.tlb won't register

    I have an application that I have used PDW to package. It installs just fine, except that this file won't register and without this file, my program bombs. Any ideas on how to get it to register?
  7. cindyray

    How can I adminsitrate my Access DB on remote server?

    That's it in a nutshell. I have an Access database on a remote server, in this case, I'm in MO and it is in GA. What is the best way to be able to get the info for reports, mailing lists, etc.?
  8. cindyray

    MSFlexGrid Question

    Is there any way to "stripe" the msflexgrid or the mshflexgrid? I tried doing a loop like this x = 1 do until rs.eof load the grid if x mod 2 = 0 then mshflexgrid.backcolorband(x) = vbyellow endif x = x + 1 rs.movenext loop I tried reading the help, but that...
  9. cindyray

    Checking for an existing table

    Peter Wow..thanks. Simple, yet effective and less coding.
  10. cindyray

    Checking for an existing table

    Now I feel like I'm talking to myself. :) I figured it out. I just took out "i = i + 1" and it found the table. I don't know what inspired me to increment i instead of letting the loop do it. Thanks again for the help.
  11. cindyray

    Checking for an existing table

    I'm using ado, so that didn't work. After alot more searching through the help file, I tried this routine. Public Sub CheckTable() Dim cat1 As New Catalog Dim i As Integer Set cat1.ActiveConnection = adoConn For i = 0 To cat1.Tables.Count - 1 If cat1.Tables(i).Name =...
  12. cindyray

    Checking for an existing table

    Mark, Thanks. I really appreciate the help. Cindy
  13. cindyray

    Checking for an existing table

    I am trying to determine whether a table exists in Access when a form loads. I've put the FileSystemObject in the form initialize event. I don't know how to reference the table though. My code is: Private Sub Form_Initialize() Dim strSql As String Dim strFile As String Dim objFS As...
  14. cindyray

    MSComm questions

    Gonna try this again. I need to write code that polls a modem connection and disconnects it if has been running longer than 45 seconds. This is for a credit card machine that takes up to 2 minutes to finally time out. I need to be able to do this, because our vendor has not come up with a...
  15. cindyray

    Modem detection and restart

    I need to write a time out program that disconnects an external modem that has been connected too long. This is for a credit card server. We have connection times of up to 200 secs and have to keep restarting the modems manually. This one has me baffled. Any help would be greatly appreciated!
  16. cindyray

    Access and parameters ...I really need the help!

    Thank you, that helps alot. I am using ado.
  17. cindyray

    Access and parameters ...I really need the help!

    That's what I'm doing now, but I have a number of various reports to do this with and was concerned with having to compact the database alot.
  18. cindyray

    Access and parameters ...I really need the help!

    First, I do not have the developers edition of Crystal and because of budget restrictions, I won't be getting it. I do however, have Access. How can I pass parameters to an Access Query that depends on the parameters (dates) to be in the header? I've been through every book I have and can't...
  19. cindyray

    Is there a way to make mailing labels with Data Report Designer

    I have to keep my manager and the network administrator happy. I was using crystal to do reports for a program I'm working on. The user is accessing the program via citrix and my network admin doesn't want a full blown program, he threw a fit about me wanting to do an install. He just wants...
  20. cindyray

    Help with Access 2002

    I'm using ADO 2.5

Part and Inventory Search

Back
Top