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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top