|
Posted by rory.groves@gmail.com on October 24, 2007, 12:57 pm
Please log in for more thread options
Have a user who is unable to start a c# NETCF2.0 application on his
Motorola Q phone. There are no error messages -- just a brief loading
icon, then nothing. The process is not running in the task manager
either.
I set up some prompts:
public Main(string[] args)
{
MessageBox.Show("Prompt 1");
InitializeComponent();
MessageBox.Show("Prompt 2");
}
"Prompt 1" fires for the user, but "Prompt 2" does not. So that means
the application is actually loading, but failing in the
InitializeComponent() method. Nothing but standard 2.0 controls are
being used.
Another, much more extensive NETCF2 application is running just fine
on this same phone.
Any ideas why there are not even any error messages?
|