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. CarlosEscobar

    ADO connection and good practices

    What about an AdoCommand object? adoCommand.CommandText = sqlStr adoCommand.CommandType = adCmdUnknown adoCommand.CommandTimeout = 15 #If AtClientSite Then adoCommand.ActiveConnection = ConnectObj #Else adoCommand.ActiveConnection = ConectObj.ConnectionString #End If...
  2. CarlosEscobar

    I Need Help Connecting to My MDB in VB

    I've connected using this method: ChDir "C:\" openString = "Driver={Microsoft Access Driver (*.mdb)};" & _ "Dbq=database.mdb;" & _ "DefaultDir=C:\;" & _...
  3. CarlosEscobar

    Setting The ADO Data Control ConnectionString Property At Runtime

    This is an interesting bug. I have no technical explanation as to why this bug occurs but when I got it my solution was: ChDir "D:\Inetpub\wwwroot\HR\Db\H3.mdb" before doing the connection. Please let me know if this works for you.
  4. CarlosEscobar

    fail to register.

    Are you using WISE installer or installing thru VB? Usually to get this TLB file to install correctly, you allow the user to install Microsoft Data Access Components 2.0 (MDAC 2.0) available at: http://www.microsoft.com/data/download.htm 2.0 is pretty old so you might have to use 2.1 or later.
  5. CarlosEscobar

    Using SQL......???

    I would have to know exactly what the error is. If you send the project (bas frm vbp) files and the MDB file and i reproduce your error i will let you know the solution. send as attachment to cescobar@accela.com with a reminder of why you sent it.
  6. CarlosEscobar

    Using SQL......???

    The quickest way to learn SQL is by example. Open your database then create a new query using the Query Wizard. Pick the tables you wish to update then choose the type of query (Append, Delete, etc). To answer your 1st question: "How does one update a particular record with a unique...
  7. CarlosEscobar

    Retrieve Password from Access 2000 DB

    Does anyone know how to retrieve their password from an Access 2000 Database? I've looked at examples on PlanetSourceCode but they did not work.

Part and Inventory Search

Back
Top