A
alexl
if not, what would be?
Also how do you start different threads that have event loops in .net.
could I do it like this?
static void Main()
{
new Thread(newform).Start();
new Thread(newform).Start();
}
public static void newform()
{
Form f = new Form();
Application.Run(f);
}
thx
Also how do you start different threads that have event loops in .net.
could I do it like this?
static void Main()
{
new Thread(newform).Start();
new Thread(newform).Start();
}
public static void newform()
{
Form f = new Form();
Application.Run(f);
}
thx