Is it possible to use symbols in a password protected form?

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

Guest

I created a password protected template form. Someone wants to enter symbols
but the drop down menu won't allow the user to select symbols. Is there a
way to do this?
 
Hi =?Utf-8?B?TU8=?=,
I created a password protected template form. Someone wants to enter symbols
but the drop down menu won't allow the user to select symbols. Is there a
way to do this?
Only by using a macro similar to the following

Sub Form_InsertSymbol()
If ActiveDocument.ProtectionType <> wdNoProtection Then
ActiveDocument.Unprotect
End If
Dialogs(wdDialogInsertSymbol).Show
ActiveDocument.Protect wdAllowOnlyFormFields, True
End Sub


Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Jun 17 2005)
http://www.word.mvps.org

This reply is posted in the Newsgroup; please post any follow question or reply
in the newsgroup and not by e-mail :-)
 

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