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 bkrike 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: *

  • Users: jlkidd
  • Content: Threads
  • Order by date
  1. jlkidd

    Setnet32 Informix connection with VB

    I've been working on a VB.Net and VBA applications that I would like for both of them to utilize an informix database on a unix server. I've installed the Informix CLI 2.5 ODBC drivers that include a program called SetNet32. In our environment we have 3 servers with a total of 5 different...
  2. jlkidd

    FileGet error using random access file

    For some reason, I am receiving the error, "Index is outside the bounds of the array." I would assume this would mean that my text file is empty and since I am referencing a record in that text file. But I know it is not. In fact it contains over 100,000 lines. My code is this...
  3. jlkidd

    100000 records in txt file, need fast way to upload to database

    Code looks like this: myReader = File.OpenText(&quot;\\Barracuda\MIS Documents\Autocar\imperialvdmstr.txt&quot;) 'read data in from imperialvdmstr and place in database While myReader.Peek <> -1 'newRow = dtImperialVDMstr.NewRow() newRow =...
  4. jlkidd

    Unable to delete and then repopulate an access2000 table

    I have a database that I recieve replacement updates on via text file. I need to be able to delete every row/record within a table. I've tried to execute a command object like so: '''''''''''''''''''''''''''''''''''''''''''''''' 'delete the records Dim cn As New OleDb.OleDbConnection()...
  5. jlkidd

    Data binding a picture box to an Access OLE Object

    I would like to bind a Ole object from an access database to a picture box on a windows form. I've setup databinding for several textbox controls on the form and they work successfully. My problem is that within the advanced databinding window for the picturebox control I am unable to set the...
  6. jlkidd

    ShellExucute unable to close program because it wants to save changes

    I have written a small application to simply open and print an Invoice that is an Excel spreadsheet. I want to never see it happen. I just want to wake up and the invoice be ready. I have successful written a program to accomplish this except that since I have used the Now() function in the...
  7. jlkidd

    ActiveX DLL, unable to call Public Function

    I am writing an ActiveX dll and would like to access it from a module(.bas) file. I have done this before without any problem or confusion. I deleted the premade class and then added a class from the VB Class Builder. I added a method that would accept a date and a text string that was to...
  8. jlkidd

    Disconnected Recordset

    I read at devguru that in ASP you could disconnect a recordset from the connection and this would allow you to access the recordset in client side script. Here's my error and a copy of the code. I can't seem to be able to set the properties properly. I would appreciate any suggestions. Thanks in...
  9. jlkidd

    Submitting one object in mulitiple forms

    I am working on a quality audit. The first form on Audit menu is the audit form which allows you to select your department, team name, and location. I then display questions from a database in another form, etc. This all works. My problem is that on the next form I would like to display the...

Part and Inventory Search

Back
Top