Search results

  1. H

    Hiding text box based on previous combo box data entry

    A-HA! Thanks. :D
  2. H

    Hiding text box based on previous combo box data entry

    But I don't have an extra "end if" in my code. Here's what I have: (The below bolded code happens to also be highlighted in the code debugger). Private Sub Diagnosis_combobox_AfterUpdate() If Me!Diagnosis_combobox = "Other" Then Me![Other_Diagnosis].Visible = True Else...
  3. H

    Hiding text box based on previous combo box data entry

    Thanks Poppa Smurf. However, when I enter your code in the After Update, it returns the error: "End If without block if"
  4. H

    Hiding text box based on previous combo box data entry

    Ok. I've been wrestling with what seems like very simple VBA code and I'm still having problems with hiding controls in my form. In my Form, I have a combo box "Diagnosis" with several row source selections (value list). One of the selections is "Other". When "Other" is selected or checked, I...
  5. H

    Hiding fields based on previous field's data selection

    Thanks. A few more beginner questions: Is Form_Current the same as OnClick in 2007? Also, when you all use me. before the field name, what is that referring too?
  6. H

    Hiding fields based on previous field's data selection

    Thank you for your help. Does it matter if the combo box is a check box, i.e. "Other" should be checked in order to make the following text box become visible.
  7. H

    Hiding fields based on previous field's data selection

    I know this is pretty basic, but I'm having trouble with the VBA coding in my form. I have a field with a combo box. If "other" is checked, I would like a new test box field to appear below it to describe the "other" category. If "Other" is not checked, then I want the text box field hidden in...
Back
Top Bottom