Click here to Skip to main content
15,884,629 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have source code for automatic closed MessageBox. i just want to disable any button in MessageBox.

My code like this :
C#
public void CloseIt()
   {
       System.Threading.Thread.Sleep(5000);
       Microsoft.VisualBasic.Interaction.AppActivate(
            System.Diagnostics.Process.GetCurrentProcess().Id);
       SendKeys.SendWait(" ");
   }


in the button_Click like this :

C#
(new System.Threading.Thread(CloseIt)).Start();

          MessageBox.Show("Help me please...");
Posted
Comments
Jibesh 7-Feb-13 3:29am    
Your question is not clear. please elaborate your question with some more details. use 'Improve Question' link to update your question.

The tag shows C# but inside the code you have used VisualBasic in your sample code so what is true?

Thank you for answer.
I'll work it. but i just want to know how to ...
 
Share this answer
 
Comments
Abhishek Pant 7-Feb-13 9:02am    
do not post your comments as a solution use-have a question orcomments if you have any comments
Just create your own "MessageBox" form which you can have full control of and use that.
 
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