This works fine but then when i close this 'qFrm' the application closes but the buttons on the VB-IDE show that the app hasnt terminated i.e the 'Run' button is still de-activated. I have to manually push the stop button to continue editing. What could be the problem? How can i close the app fully
I know that VB isnt exactly the best of languages but i really needed this app in a jiffy.It works fine except for the problem ive specified above. I hope someone here uses VB or at least knows the way to use diiferent forms in an app with VB.
Neo wrote:
I know that VB isnt exactly the best of languages but i really needed this app in a jiffy.It works fine except for the problem ive specified above. I hope someone here uses VB or at least knows the way to use diiferent forms in an app with VB.
hiding a form is not closing a form. If you open multiple forms, you must also Close() them. Try Close()ing the other form in the Form.Close() of the second one.