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 gkittelson 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. SKILTC

    I forgot the password that opens my db!

    Try the following web site. I have used their demo programs before and they work great. lostpassword.com good luck
  2. SKILTC

    multiple loops

    I am working on a schedule program and am having trouble getting the program to schedule all employees at once. I created a form based on a schedule set table which has the fields: ID, PostID, PositionID, TourID, EmpID. I also have a subfrom based on the legs table- fields: TourID, Sequence...
  3. SKILTC

    setwarnings issue

    I have used the setwarnings in the following manner. Dim stDocName As String DoCmd.SetWarnings (False) stDocName = "qry Emp update" DoCmd.OpenQuery stDocName, acNormal, acEdit DoCmd.SetWarnings (True) the query used is an append query This code works fine in both the original .MDB...
  4. SKILTC

    Dim dbs as Database not valid

    I have used the Dim dbs as Database in my code in '95, '97 but I am not getting that option in '2000. I get Compile error: User-defined type not defined. The Help sections use database as a valid parameter. Why is it not working for me? Code example: Dim dbsmds as database, rst as recordset...
  5. SKILTC

    Setwarnings issue

    I have used the setwarnings in the following manner. Dim stDocName As String DoCmd.SetWarnings (False) stDocName = "qry Emp update" DoCmd.OpenQuery stDocName, acNormal, acEdit DoCmd.SetWarnings (True) the query used is an append query This code works fine in both the original .MDB...
  6. SKILTC

    Passing object references

    I have 28+ toggle buttons that when 'clicked' will change color and update an unbound field by adding 1, (if its value is "-1") else it will revert to the original color and update the unbound field by subtracting 1. Is there a way I can write this code once in a public area and use...

Part and Inventory Search

Back
Top