Recent content by johho0ha

  1. J

    Enabling fields from a combobox selection

    Surprisingly I'm not getting the error and I am getting the code to do exactly what I wanted to do. Thanks for all your time anyways!
  2. J

    Enabling fields from a combobox selection

    I have a combobox with: Both Left No Right Based on the choice of the user, the combobox will enable lots of fields for the user to continue to answer. My problem is that "Both", "Left" and "right" all enable the same fields and my code: Private Sub Proc_iliac_afterupdate() Select case...
  3. J

    Using keyboard to check Checkboxes

    I've set up a form with LOTS of checkboxes, checking a box opens up lots more checkboxes to tab through. So my question is...is there a way for the user to tab through the checkboxes and actually check a checkbox along the way using a key on the keyboard? Is this something that I have to set up...
  4. J

    Autofill text box based on three combobox selections

    is my mdb my database? if so, i have attached the form and hopefully you can see what my form is doing wrong
  5. J

    Autofill text box based on three combobox selections

    I see your code and I tried to apply it to my case selections (there are a lot). When I tried to run the code I get an error stating "The expression After Update you entered as the event property setting produced the following error: Procedure declaration does not match description of event or...
  6. J

    Autofill text box based on three combobox selections

    I have a list of pathology staging into three categories, based on these three comboboxes of each category, you can determine what stage the three choices mean. There are comboboxes for a T stage, N stage and a M Stage. The T stage has 4 choices (T1, T2, T3, and T4), N stage has 4 choices (N0...
  7. J

    Enabling Multiple fields after a combo box selection

    I know how code to enable multiple fields after a check box selection. But I want to be able to do the same effect, but for a combo box. I want to dim all fields, then once I pick a selection from a combo box, the fields related to that selection would be enabled for data entry. Here is the...
  8. J

    Enabling multiple commands after a check box

    Enabling multiple commands based on combo box selection I'm sure this procedure is similar to what you have given me above, but I don't know what I have to change to apply to the selection of a combo box instead of a check box. Here is the combo box selections: T1 T2 T3 T4 based on which...
  9. J

    Enabling multiple commands after a check box

    Yay! That worked. But now I tried to do the same code for a different tag, "symptom," for another check box in the same form, but that doesn't work. What do I have to do differently?
  10. J

    Enabling multiple commands after a check box

    I have no clue as to where to start with this. Basically this is what I want to happen. If "Smoker?" = yes (checked), then "smoker status", "# of years smokes", "packs smoked", "years quit" would open up to allow the person entering the data to answer the questions specific to the check box. The...
Back
Top Bottom