I just need to know how to disable a button. Please give me an example.
Printable View
I just need to know how to disable a button. Please give me an example.
Either through properties window by setting Enabled to False or through code:
Command1.Enabled=false
Vlad
Suppose you have a command button on your form call "CommandButton1", write the following code to disable the command button:
CommandButton1.Enabled = False
If you want to actually make the control so you cant see it, use command1.visible = false
PanasonicSubz