Putting an actual check mark in a check box form field.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I get a real check mark in the form field check box? All I can get is
an X to go in that box. Any help would be great. Thanks in advance.
Margot
 
An X is the only checkbox format. If you wanted an actual check versus
an X, then you'd have to write VBA code to insert that symbol when the
user checks the box...which would be a lot more work. If you know VBA,
you can record a macro inserting the Check symbol from Insert >
Symbols and then add that to the Run on Exit field of the checkbox.
Add code that would select the checkbox if checked and replace it with
a checkmark. However, without a lot more logistics in your code, the
user would not be able to change that once you remove the checkbox.

If you don't know VBA, I'd suggest you stick with the X.

You can find more info on creating form here:

http://www.mousetrax.com/techpage.html#autoforms

Good luck...

Dian D. Chapman, Technical Consultant
Microsoft MVP, MOS Certified
Editor/TechTrax Ezine

Free MS Tutorials: http://www.mousetrax.com/techtrax
Free Word eBook: http://www.mousetrax.com/books.html
Optimize your business docs: http://www.mousetrax.com/consulting
Learn VBA the easy way: http://www.mousetrax.com/techcourses.html
 

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

Back
Top