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 IamaSherpa 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. LeoLily

    prevent copying to blank database?

    Thanks, all. I THOUGHT it would have already been covered but had a heck of a time finding it...
  2. LeoLily

    prevent copying to blank database?

    Is there a way to prevent my database objects from being imported into a blank database?
  3. LeoLily

    Limit Message to the Active Form

    Hello- I have several subforms within one form. Each subform has code in it that alerts the user that he/she did not fill in a required field - example follows: If IsNull(Me.X) = True Then MsgBox "Click on Intensity level." Me.y.SetFocus Me.x.SetFocus End If The problem here is...
  4. LeoLily

    back button needed from sub-sub form to prior sub form

    This database is replicating one that was written 6 years ago for probation officers. The problem is that we don't have the original source code available (the programmer used an Access database but the data entry, etc. are in a different program) and weren't able to update from Access '97 to...
  5. LeoLily

    SetFocus not working in data entry code

    I tried the first fix and it worked perfectly! Thanks SO MUCH!!
  6. LeoLily

    back button needed from sub-sub form to prior sub form

    I have considered this, but am unfamiliar with tabs. Is there a way to set up a "continue" button that would change the focus to the next tab?
  7. LeoLily

    SetFocus not working in data entry code

    I am creating a data entry form with required fields. I have set data entry code in the "On Exit" as follows: Private Sub responsible_Exit(Cancel As Integer) If IsNull(Me.responsible) = True Then MsgBox "Click on Responsible level." Me.responsible.SetFocus End If End Sub The problem...
  8. LeoLily

    back button needed from sub-sub form to prior sub form

    I am setting up a data entry form that has required fields; the form has 7 subforms and I am having problems creating a "back button" to go (for example) from subfrom 7 to subform while staying in the same record.

Part and Inventory Search

Back
Top