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: *

  • Users: floid
  • Order by date
  1. floid

    Condition to handle zero

    I have tried many ways and still cant get this to work. I tried this and not sure what "myControl" (DoCmd.GotoControl "myControl") represents?? Is it my field value? DoCmd.GotoControl "Me.cust_id" I tried this and it still didnt work. I tried the onExit on the...
  2. floid

    Condition to handle zero

    Sorry I meant to say this was a form. Please advise how I can get it corrected.
  3. floid

    Condition to handle zero

    I now get the message to "Please fill in an cust id." but after that it exits out of my subform and doesnt go back to the OM ID like it should. Please advise if I have a problem with SetFocus or anything else I am missing. Private Sub Form_BeforeUpdate(Cancel As Integer) Dim...
  4. floid

    Condition to handle zero

    Want to warn someone after they exit my form not to leave a field value with a the number 0 in it. My attempt below is not working. In my before update event: Dim Response As String If (Me![cust_id]) == 0 Then Cancel = True Response = MsgBox("Please fill in a cust id.")...

Part and Inventory Search

Back
Top