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!

Recent content by tomrauk

  1. tomrauk

    Converting VB to HTML

    What??????????
  2. tomrauk

    Recordset problem: "Rowset cannot be bookmarked"

    I need to see some of the code. Like the query statement.
  3. tomrauk

    wininet calls problem

    There was no error the Api call "Public Declare Function ftpGetCurrentDirectory Lib "wininet.dll" _ Alias "ftpGetCurrentDirectoryA" _ (ByVal hFile As Long, ByVal sBuffer As String, _ ByRef lBufferLength As Long) As Boolean" returns a True or False...
  4. tomrauk

    Selecting a DB Table Name ?

    Use this: Dim db as Database Dim rs as Recordset Dim sql as String Set db = OpenDatabase("c:/mystuff/newdb.mdb") sql = "SELECT * FROM CAT;" Set rs = db.OpenRecordset(sql) place code to dispay items rs.MoveNext rs.close db.close
  5. tomrauk

    Existence, Raison D'etra and Common Dialog Boxes

    FileSystemObject has a FileExist method that would work.
  6. tomrauk

    Runing a query from another database

    How do you get to the information if you are not connected to the DB?
  7. tomrauk

    Selecting a DB Table Name ?

    What is table path "c:/mystuff/newdb.mdb/TheTable "? This is not how you place information into a DB.
  8. tomrauk

    Opinions about MCSD

    I have my MCSE and found it to be a waste of time and money. I would think that MCSD would be the same thing. Get a book and learn it on your own it isn't that difficult, especially if you have programming experience.
  9. tomrauk

    Open file problem!

    Use FileSystemObject.
  10. tomrauk

    VB File/Folder Cleaning Script

    FileSystemObject has all of the answers.|-0

Part and Inventory Search

Back
Top