tab to the next form field

E

Eric

I have a legal document set up as protected for filling out forms, and some
of the field forms have formatting applied to dates & currencies.

When I populate the document programatically, the field formats I need
aren't applied until I tab through the doc, hence this posting.

Much Thanks In Advance,
Eric
 
E

Eric

Here's what I'm doing now, which isn't working

Private Sub TabThruForm(doc As Word.Document)
' seems to set the formatting of the fields properly
Dim k As Integer
Dim frmFlds As Word.FormFields
Set frmFlds = doc.FormFields
For k = 1 To frmFlds.Count
If k <> frmFlds.Count Then frmFlds(k).Next.Select
Next k
frmFlds(1).Select
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