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())
///
 
Application.Run([instance of form goes here])

-Rob Teixeira [MVP]
 

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

Back
Top