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 sgf323

  1. sgf323

    Convert Access 2000 data to 97 file format

    Easiest way would be to use Office XP. It will convert back and forth from 97-2000-2002
  2. sgf323

    finding an autonumber after inserting data into its table??

    Normally I pass an SQL string to a command object to update databases but in the case when I need to get an autonumbered ID I open the recordset with ADO. With RS .AddNew .Fields(sField) = sData .Update 'now the record is created 'get the ID .Fields("ID") = lID End With...
  3. sgf323

    Crystal Reports + VB + SQL Server

    I built my reports in Crystal Reports then imported them to VB into the RDC. I used to use an Access database and to set the database location for the RDC I used this code: For I = 1 To Report.Database.Tables.Count Report.Database.Tables.Item(I).Location = SourceFile 'SourceFile holds the...

Part and Inventory Search

Back
Top