lawrence.collymore
Board Regular
- Joined
- Jan 17, 2012
- Messages
- 54
Hi There,
Just wondering if someone could help me write code to display a Userform if checkbox1 in my word document is checked. I tried to create a Userform with a textbox so the user can enter a password after they click the checkbox. What I'd like to do is upload a digital .jpg file (Which is a signature) beside the checkbox1 in the word document. For some reason, I can't even get the Userform to show once the user clicks the Checkbox.
Stored in the ThisDocument:
Is something like this possible in Microsoft Word?
Thanks,
Lawrence
Just wondering if someone could help me write code to display a Userform if checkbox1 in my word document is checked. I tried to create a Userform with a textbox so the user can enter a password after they click the checkbox. What I'd like to do is upload a digital .jpg file (Which is a signature) beside the checkbox1 in the word document. For some reason, I can't even get the Userform to show once the user clicks the Checkbox.
Stored in the ThisDocument:
Code:
Private Sub CheckBox1_Click()
If CheckBox1.Value = True Then
DoyleAnthony.Show
End If
End Sub
Is something like this possible in Microsoft Word?
Thanks,
Lawrence