PUTTING A TICK IN A FORM

M

MEGAN

Please help I'm going insane. I want to eaither change the check box form field into a a=
ctual tick or get the macro (which is basic) to work in my form. It keeps coming up with a=
run time error 4605. Heres the VB for the tick

Sub TICK()
'
' TICK Macro
' Macro recorded 2/16/2007 by Megan Dixon
'
Selection.TypeText Text:=3D"=C3=BC"
Selection.Font.Name =3D "Wingdings"
Selection.MoveLeft Unit:=3DwdWord, Count:=3D1, Extend:=3DwdExtend
Selection.Font.Name =3D "Wingdings"
End Sub

Thanks
 
D

Doug Robbins - Word MVP

Take a look at the Checkbox template available at

http://www.addbalance.com/word/download.htm#CheckboxAddIn



--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

Please help I'm going insane. I want to eaither change the check box form
field into a actual tick or get the macro (which is basic) to work in my
form. It keeps coming up with a run time error 4605. Heres the VB for the
tick

Sub TICK()
'
' TICK Macro
' Macro recorded 2/16/2007 by Megan Dixon
'
Selection.TypeText Text:="ü"
Selection.Font.Name = "Wingdings"
Selection.MoveLeft Unit:=wdWord, Count:=1, Extend:=wdExtend
Selection.Font.Name = "Wingdings"
End Sub

Thanks
 

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