View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default VB Script to Hide Command Button if Bitmap is True

In the event

Private Sub CommandButton1_Click()

' current code
CommandButton1.visible = False
End Sub

--
Regards,
Tom Ogilvy

"Ken" wrote in message
...
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