Windows Forms Message Box
-
Hi, I want to display a message box without showing a OK button. This I need because I have to display a processing message in an application which is in the process of displaying a website in the axBrowser window. Can anybody reply me.... Thanks in advance.. Regards, Jaya :)
-
Hi, I want to display a message box without showing a OK button. This I need because I have to display a processing message in an application which is in the process of displaying a website in the axBrowser window. Can anybody reply me.... Thanks in advance.. Regards, Jaya :)
If you want no button at all, then you need to create your own. Also, if you create a modal dialog, as the Message Box is, nothing will happen while it is being shown, unless it's in another thread. Christian Graus - Microsoft MVP - C++
-
If you want no button at all, then you need to create your own. Also, if you create a modal dialog, as the Message Box is, nothing will happen while it is being shown, unless it's in another thread. Christian Graus - Microsoft MVP - C++
-
Hi, Can you please tell me whether I can able to disable the OK button of message box while using in Windows application with C# code. If this is possible I shall be able to close the message box after a while. Thanks in advance, Regards, Jaya
No, you can't. You will still need to create your own dialog, a trivial task in any case. Christian Graus - Microsoft MVP - C++