OpenNetCF 2.2. Minimize application on startup problem

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
 
L

LEM

I forgot to mention that I'm using CF3.5

Anybody could try that code? I just created an
empty project and still have the same problem.

Thanks
 
L

LEM

Chris, let me know if you will have a chance to take a look at this
later. Nobody from the forum replied my post so I'm still having this
problem.

Thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top