Click here to Skip to main content
15,884,388 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
how can i Disable all Buttons for a user to click on the other buttons Until to response of Button Pressed Returns ,as i have fired a Query on the button click
Posted
Updated 27-Feb-13 0:02am
v2
Comments
Dharmendra-18 27-Feb-13 6:03am    
You can Use Progressbar. Until Progressbar complete the button should be enabled false...
Hope this will works for you
sr_24 27-Feb-13 6:16am    
how can i do it Bro ??? Dharmendra-18

Every button has an ENABLED property. Set ENABLED to False to disable a button and to True to enable a button.

See Button Class[^]

button1.Enabled = False;
 
Share this answer
 
use the visible property as a false up to the user click on button

or
display property as disable

Hope this will works for you
 
Share this answer
 
Hi,
you should separate the View from Model:

View:
Button clicked Event -> call the Model to say the button has been clicked so start working.

Model:
Model will reply immediately saying, I start working so disable the button;
Model will continue to do the work;
Once the work completed the Model will tell the View again, I finished now enable the button.

Regards
Jegan
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900