
modeless form using form.Show() method in C#
Quote:
> Hi, there,
> When I use form.Show() to diaplay the form and run the C# application, the
> form just stay for a short time and disappeared. Is there a way to keep
the
> form show by using form.Show() method?
> Thanks.
public static void Main()
{
Application.Run(new MainForm());
Quote:
}
HTH,
Tom Shelton