Form Show Question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a class that is sort of a custom console
it has an object member in this class that is a custom form
with a sub show which has a command of frm.sho

my question is i had a module with a instance of this class
and in the sub main i hit the show sub of the class
it opens but then closes immediately
how do i get this form to stay open
 
* =?Utf-8?B?V1N0b3JleUlJ?= said:
I have a class that is sort of a custom console
it has an object member in this class that is a custom form
with a sub show which has a command of frm.show

my question is i had a module with a instance of this class
and in the sub main i hit the show sub of the class
it opens but then closes immediately
how do i get this form to stay open

\\\
Application.Run(New FooForm())
///
 
Back
Top