VB Script to Hide Command Button if Bitmap is True

  • Thread starter Thread starter Ken
  • Start date Start date
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
 
In the event

Private Sub CommandButton1_Click()

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