Link to home
Start Free TrialLog in
Avatar of WDJ98338
WDJ98338Flag for United States of America

asked on

Coding drop-down list to enable the Save button

I want to code my Drop-down list to enable my save button. By using the properties expression can this be done?
Avatar of Clothahump
Clothahump

Put code in the click event for the dropdown that enables the save:

Sub DropDown_Click
...
btnSave.Enabled=True
...
End Sub
ASKER CERTIFIED SOLUTION
Avatar of Votech
Votech

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial