How I can show any message before the main form is loaded in Windows CE?? (I work in WinCE)
|
|
|||
|
|
|
In your main function in program.cs, before the main form is created, you could call a message box with MessageBox.show, specifically: (this example if from a winforms app, so the Application.EnableVisualStyles() probably doesn't apply, but it should work the same)
|
||||||||||
|
|
|
The standard way of doing it would be to add a delegate for the form's Load event and do a MessageBox.Show in that delegate. I haven't used WinCE, though, so I don't know if it would work there, though. |
||
|
|
