L
LEM
Hi,
I have been waiting for this feature for a while and
now that it has been released I was trying to test it.
However, I cannot get it to work.
When I run the application it shows the hour glass indefinitely
and I have to restart the OS.
This is what I'm doing:
In Program.cs:
static class Program
{
public static FormMain g_Main;
/// <summary>
/// The main entry point for the application.
/// </summary>
[MTAThread]
static void Main()
{
g_Main = new FormMain();
OpenNETCF.Windows.Forms.Application2.Run(g_Main,true,false);
//Application.Run(g_Main);
}
}
I'm using VS2008.
Am I doing something wrong?
Thanks
I have been waiting for this feature for a while and
now that it has been released I was trying to test it.
However, I cannot get it to work.
When I run the application it shows the hour glass indefinitely
and I have to restart the OS.
This is what I'm doing:
In Program.cs:
static class Program
{
public static FormMain g_Main;
/// <summary>
/// The main entry point for the application.
/// </summary>
[MTAThread]
static void Main()
{
g_Main = new FormMain();
OpenNETCF.Windows.Forms.Application2.Run(g_Main,true,false);
//Application.Run(g_Main);
}
}
I'm using VS2008.
Am I doing something wrong?
Thanks