Quote:
Originally posted by taxes
Hi salvelinus
"There's also a scope issue. You can declare the form as a global variable in the module, then .show() in sub main will work."
Not in my copy of VB.NET. Have you tried it?
Yes, the other day. I've got VB 2002. If I declared the form in Sub Main, then did Application.Run, the form would briefly flash into existance, then disappear. The app would still be listed as running, according to the IDE, but no forms were visible. My maybe faulty assumption is that it was a scope issue, because when I declared the form as global, it worked fine. It also allowed me to access/manipulate values on the form from other forms.