Need help with VBACode

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • accessvb
    New Member
    • Feb 2010
    • 1

    Need help with VBACode

    I am working on a Form (in Access 2003) which has different categories and one of the categories being New Hire. I have added a subform with New Hire Information. I have disabled the subform but would like to enable it only when someone clicks on New Hire in the category section of the form. Please help.

    Thanks!
  • Stewart Ross
    Recognized Expert Moderator Specialist
    • Feb 2008
    • 2545

    #2
    Hi. You should be able to re-enable the subform from the on-click event of your New Hire control as follows, substituting the real name of your subform control for my placeholder below:

    Me![Your subform control name].Form.Enabled = True

    -Stewart

    Comment

    Working...