bella_chica
Mar 12 2006, 03:14 PM
How can you click on a button in a form and enable another button in another form?
Alan_G
Mar 12 2006, 03:21 PM
Not sure why you'd want to do it, but.....
In the On Click event of the button doing the enabling
Forms!YourOtherFormName!ButtonYouWantEnabled.Enabled = True
Change the names to suit your actual names
Your other form needs to be open.........
HTH
Alan