Drop down form field...ampersands not allowed?

G

Guest

I have a drop down box on a form and one of the list entries is the name of a
company that includes an ampersand (&). Unfortunately, the ampersand does not
display on the fields when the form is protected.

Is there a work around for this?

Also, is there a way to specify the current date as the default for a text
form field.

Thanks for all your help...this is a super resource for people like me who
know just enough to ask stupid questions!
 
G

Greg Maxey

You could run something like the following on entry to the field:
Sub OnEntryText1()
With ActiveDocument.FormFields("Text1")
.Result = Date
.Range.Fields(1).Select
End With
End Sub
 

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