not creating extra instense

  • Thread starter Thread starter ramonours
  • Start date Start date
R

ramonours

Hello
How can I go back to the main form on my app from other forms without
creating an extra instance of it??
So that I won't have to tap 'ok' button twice to close my app???
using vb.net .netcf

thanks,
bb.
 
Pass a reference to the original Form1 instance to each form in the ctor so
they have a way to refer to the caller.
 
Back
Top