|
-
December 18th, 1999, 07:07 PM
#1
how do you disable a button
I just need to know how to disable a button. Please give me an example.
-
December 18th, 1999, 10:35 PM
#2
Re: how do you disable a button
Either through properties window by setting Enabled to False or through code:
Command1.Enabled=false
Vlad
-
December 19th, 1999, 02:03 PM
#3
Re: how do you disable a button
Suppose you have a command button on your form call "CommandButton1", write the following code to disable the command button:
CommandButton1.Enabled = False
-
December 19th, 1999, 11:10 PM
#4
Re: how do you disable a button
If you want to actually make the control so you cant see it, use command1.visible = false
PanasonicSubz
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|