Displaying Userform:   Return to List

' Very simple to display a Userform (with or without passed parameters)

With UserForm1
    .Checkbox1 = True' Passing a parameter
    .Show
End With

' ********** Or simplest form ********
UserForm1.Show



Note to Webmaster