View Single Post
  #2 (permalink)  
Old 01-29-07, 01:55
sainsalex sainsalex is offline
BOD Member
 
Join Date: Jan 2007
Posts: 66
Default

Try these steps:
(Both uses ADO Connection)
  • For Microsoft SQL Database
  • With DB
  • .ConnectionTimeout = 60
  • .Open "Driver={SQL Server};Server=srv_za_database...
  • End With

  • For Microsoft Access Database
  • Private DB as New Connection
  • With DB
  • .Provider="Microsoft.jet.oledb... (Access 2000)
  • .ConnectionString = "c:\Test.mdb"
  • .Open
  • End with
Reply With Quote