UserForm Button...after click ???

gene_sc

New Member
Joined
Aug 24, 2002
Messages
32
Hi another newbe question
I have a userform and would like to have the buttons after they have been clicked to be "grayed out" IE: not enabled.
Would I set this up as a "on Mouse up event"?? could the code be as simple as
On Mouse up enabled =false"

thanks
regards gene
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Thanks :^)
I'll give it a try, when I get home,
couple of questions....
I aready have a button click event that runs a maro, after the maco runs I want the button enabled state to be false, as in your example. So how do I incorporate your example??
thanks again
regards gene
 
Upvote 0
Like this?

Code:
Private Sub CommandButton1_Click()
'   *** Call your macro here ***
    CommandButton1.Enabled = False
End Sub
 
Upvote 0
Yep just like that- being new to Excell & VBA, I wasn't sure of the proper syntax
Thanks
regards gene
 
Upvote 0

Forum statistics

Threads
1,203,552
Messages
6,056,053
Members
444,841
Latest member
SF_Marnie

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top