Search results

  1. A

    Need ComboBox need help asap

    Yes, I would like to keep limit to list to Yes. 'W' will be the first letter of drop down list item.
  2. A

    Need ComboBox need help asap

    Nobody wants to help?:confused:
  3. A

    DoCmd.SetWarnings not suppressing warnings.

    Try: DoCmd.SetWarnings False
  4. A

    If, Then, ElseIf?

    You are using IsNull function incorrectly. For example instead of: If Not IsNull([Company]) you should write: If IsNull([Company]) = False Go through your code and fix all the InNull expressions. You should assign either = True or =False to this expression.
  5. A

    If, Then, ElseIf?

    If [Project_Type] = "1" And (IsNull(TMRate) = True Or TMRate = "") Then MsgBox "Please fill in the Time and Materials Rate before proceeding", vbOKOnly TMRate.SetFocus GoTo Exit_Procedure End If
  6. A

    Need ComboBox need help asap

    Hi. I have a combobox in the form. When I start to type in text value in combo it accepts any text before I update it (hit enter). Once I hit the enter, if text does not exist in the dropdown list give you error message. Which is perfectly what I want. My struggling is, instead of typing the...
Back
Top Bottom