Print Preview
The Me keyword refers to the object holding the code which can be a general
module, a sheet module or a form module. So if you want the button to hide:
Private Sub CommandButton6_Click()
On Error Resume Next
Worksheets(1).Select
ActiveSheet.PrintPreview
Me.CommandButton6.Hide
End Sub
"Eddie_SP" wrote in message
...
My UserForm takes the whole screen. I have many CommandButtons, and one of
them is "Print Preview".
I don't want the user to see the sheet (it's an "auto_open"), all controls
will be done by using the UserForm.
I have this:
Private Sub CommandButton6_Click()
On Error Resume Next
Worksheets(1).Select
ActiveSheet.PrintPreview
Me.Hide
End Sub
But it's not working. It freezes Excel, and all I have to do is Ctrl + Alt
+
Del.
Can some help me? I tried searching the past topics, but none of them
really
helped me.
|