View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] Shaka215@gmail.com is offline
external usenet poster
 
Posts: 162
Default User form closes after opening another one -- Problem with "Unload Me"?

Hello,

I am having trouble with some user forms I made...It seems when I
navigate through the user forms I get a undesired result... When I have
a user form that loads another user form I have a button inside of that
user form that allows it navigate back to original (before it was sent
to the new opened one). This works fine until the userform is closed
and reopened by pressing the same button again...Excel just seems to
think it is closing every userform that is opened. I have no idea how
to correct this problem so I am hoping someone out there knows how to
correct this problem...the example below will help better explain the
situation.

Form Forward Motion
-------------------------------
UserForm1 (Parent)
|--- UserForm2 (Child)
|--- UserForm 3 (Grandchild)

Form Backward Motion
-------------------------------
UserForm3 (Grandchild)
|--- UserForm2 (Child)
OR
|------------- UserForm 3 (Parent)


UserForm3 has the option of going back to UserForm1 & UserForm2...this
works correctly until it is ran a second time (meaning no form is
closed)...Excel seems to crap out after it has loaded 3 user forms and
has closed each one.

Here is the scenario I am doing...

From UserForm1 I am loading Userform2
From UserForm2 I am loading Userform3


When I am finished using UserForm3 I go back to UserForm2 and from
UserForm2 I can go back to UserForm1...Excel unloads everything if I
decide to go back into UserForm1 or UserForm2 from UserForm2.

I have tried the code below...

Unload Me (Closes the current userform)
Show.Userform# (Opens the new userform)

I have also tried getting rid of the "ME" part in the code to make it
relative towards the navigation but it is failing to produce the
desired result...

Any help is greatly appreciated!!!