Recent content by Chosin01

  1. C

    Hiding Combo box on form

    Thanks D Even better Idea.
  2. C

    Hiding Combo box on form

    Here is the solution I worked out. It might be alittle sloppy since I dont know VB but here it is. Private Sub Form_Current() If IsNull(Me("Last Name")) Then Combo234.Visible = False Exit Sub Else Combo234.Visible = True Exit Sub End If End Sub This allows the same form to be used in add mode...
  3. C

    Hiding Combo box on form

    thanks but wouldnt that be reversing the problem with still no solution??
  4. C

    Hiding Combo box on form

    Thanks DJ. I'm a newbee. I'm aware of the Mycombobox.visible = false or true. And I've used that to hide a combo box before. Like you stated the problem is where it would be attached to, and the conditional statement if any, that it needs. Appreciate you help though. Thanks
  5. C

    Hiding Combo box on form

    I have a form that I use to collect data. I open the form with a command button Which opens the form to a new record. I also want to use the same form for a search. I have placed a combo box in the report header. I will use another command button to open the form in data edit mode. The...
Back
Top Bottom