VB Script to Hide Command Button if Bitmap is True

K

Ken

I have a command button that opens a signature box that
can be signed using a mouse. I would like to make this
button Hide once the Bitmap image is saved to the
signature box. Any help with some VB code to do this
would be appreciated.

Thanks

Ken
 
T

Tom Ogilvy

In the event

Private Sub CommandButton1_Click()

' current code
CommandButton1.visible = False
End Sub
 
T

Tom Ogilvy

Private Sub CommandButton1_Click()
' current code
Commandbutton1.visible = False
End sub
 
Top