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 SkipVought 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. WindDrinker

    Check if access database exists

    include in references: Microsoft Scripting Runtime Public Function DoesFolderExist(FolderSpec As String) As Boolean If fso.FolderExists(FolderSpec) = False Then 'MsgBox FolderSpec 'create the folder fso.CreateFolder (FolderSpec) End If End Function Public Function...
  2. WindDrinker

    I cannot get my first columns form a ListView?

    There is no subitem(0)
  3. WindDrinker

    [b]Access Reports from VB6[/b]

    Does anyone know how to populate a list with the predefined reports in an Access database?
  4. WindDrinker

    Empty Date Field Problem

    You might check to see if you have a value in the date field prior to trying to save it, then, if you don't have a value, you don't include it in the insert list. dim insertStmt as string if isnull(datefield) = false then insertStmt = "INSERT INTO Contract (Date_Filed [and 17 other...

Part and Inventory Search

Back
Top