Clear Checkbox

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi,

I have two useforms. Useform1 has a Checkbox which when ticked opens
Userform2. When Userform2 is closed i would like the tick in the Checkbox in
Userform1 to not be their. How would this be done please?

Thanks
John
 
Use the Terminate event of Userform2 to uncheck the form1 checkbox

Private Sub UserForm_Terminate()

End Sub

If this post helps click Yes
 
Back
Top