code to automating digital sign

A

asier

Hello!
I would like to make a program to digital sign a lot of created excel with
macros.

I only find there example, but is not enough:

Public Function IsWordProjectSigned(strDocPath As String) As Boolean
Dim docProj As Word.Document

' Open document.
Set docProj = Documents.Open(strDocPath)

' Check VBASigned property of document.
If docProj.VBASigned Then
IsWordProjectSigned = True
Else
IsWordProjectSigned = False
End If
End Function


Every one can help me??
Thaks a lot and sorry my poor english.
 

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