Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Digital Signatures 2

Status
Not open for further replies.

CNS4us

MIS
Mar 29, 2004
28
0
0
US
I need help with digital signatures. I have searched the web and there are hundreds of solutions. All I need is the ability to digitally sign a WORD document which then prevents the contents from being changed. I would prefer little or no additional software for each client computer. Also, I would prefer simple basic operation instead of a full client/server operation with more features than ginsu knife set. Any guidance would be appreciated.

Thank you.
 
Just as an aside, here is a snippet that shows how to put comments into a doc, so they show in Windows Explorer.

' set comments to show in Explorer etc.
Dim verTemp As Versions
Dim myComments As String
myComments = "Blash blah bloop"
Set verTemp = ActiveDocument.Versions
verTemp.Save Comment:=myComments
If ActiveDocument.Saved = False Then ActiveDocument.Save
Set verTemp = Nothing

Gerry
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top