View Single Post
 
Old 09-04-2014, 11:05 AM
donnac1107 donnac1107 is offline Windows 7 32bit Office 2010 32bit
Novice
 
Join Date: Sep 2014
Posts: 6
donnac1107 is on a distinguished road
Thumbs up Thank you!!

Here is the code I used. I created a command button and used the code you recommended and it works beautifully. Thank you so much

Private Sub CommandButton1_Click()
With ActiveDocument.FormFields("Text124")
.Result = "Entered by " & Environ("Username") & " on " & Format(Now(), "DDDD, D MMMM YYYY @ hh:mm")
.Enabled = False
End With

End Sub
Reply With Quote