vote up 0 vote down star

How I can show any message before the main form is loaded in Windows CE?? (I work in WinCE)

flag

31% accept rate
Please explain how you want to "show" the "message" – phsr Feb 19 at 20:44

2 Answers

vote up 1 vote down

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)

 static void main()
 {
    Application.EnableVisualStyles();
    Application.SetCompatibleTextRenderingDefault(false);
    MessageBox.Show("Here is your message");
    Application.Run(new MainForm());
 }
link|flag
thank's for the help, i have the Main form that load database and fill comboBox whit database. it take for 10-15 second. i need that in this time will be any message. how can i do it ? (i dont want MessageBox) – Gold Feb 17 at 15:56
How are you planning on displaying the message? What are you looking to do? Create a splash page while you main form loads? – phsr Feb 17 at 17:45
yes !!!, how can i do it ? – Gold Feb 17 at 18:57
I'm not sure how to create a splash screen on WinCe, you should be able to create a second form and show that while you are doing your database interaction then close that form and load your main form once that is completed – phsr Feb 19 at 11:49
You can open the .png file do a system ticks for 10-15 sec then close the .png and show the form – thegreekness Apr 1 at 1:37
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.