Close a secondary userform without closing the primary userform

sspatriots

Well-known Member
Joined
Nov 22, 2011
Messages
572
Office Version
  1. 365
Platform
  1. Windows
Hi,

I have a Userform that has a button on it that opens another Userform. When I try and close the secondary Userform with a "Close" button (code below), it automatically closes my primary Userform that I launched that secondary Userform from. I would like to just close the secondary Userform and leave the primary Userform open. I have some code below that I started, but it still closes everything.

The Primary Userform is named: Job_Status_PM
The Secondary Userform is named: Legend


Any suggestions would be greatly appreciated.


Thanks, SS

VBA Code:
Private Sub cmdClose_Click()
    
    Unload Legend
    
    Job_Status_PM.Show
    
    Job_Status_PM.cmdClose.SetFocus

End Sub
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
What is the forms ShowModal property set to?

Try setting it to False.
 
Upvote 0
Solution

Forum statistics

Threads
1,215,085
Messages
6,123,030
Members
449,092
Latest member
ikke

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top