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

    Refreshing a form

    I tried changing the code to: Private Sub EmployeeName_OnChange() Me.AccountListing.Form![EmployeeName].Requery End Sub Private Sub AccountID_OnChange() Me.AccountListing.Form![AccountID].Requery End Sub Private Sub AccountName_OnChange() Me.AccountListing.Form![AccountName].Requery End Sub...
  2. azndiva716

    Refreshing a form

    Hi, That didn't work. Any other ideas? Thanks!
  3. azndiva716

    Refreshing a form

    Hi, I have 3 unbound items on a form. Each one depends on another. The first one is called Employee Name, the second one Account Name, the third Account ID. I have it so that the users select an Employee and then they choose from a list of Account Name associated with that Employee name and...
  4. azndiva716

    How to change an input mask error message

    Hi, I tried that and I have entered: Private Sub Form_Error(DataErr As Integer, Response As Integer) If DataErr = 2279 Then MsgBox "Please enter the infraction date in the following format: MM/DD/YYYY", [vbokayonly], [Date Error] Response = acDataErrContinue End If End Sub However...
  5. azndiva716

    How to change an input mask error message

    Hi, I have an input mask:00/00/0000;0;_ for users to enter date. I also have a validation rule that it cannot be a date greater than today's date. The validation text will only show up for if the validation rule is violated but will not show up when users don't enter the data according to the...

Part and Inventory Search

Back
Top