SignatureInfo.SelectSignatureCertificate method (Office)

Displays a dialog box that allows users to select which signature certificate to use for signing a document.

Syntax

expression.SelectSignatureCertificate(ParentWindow)

expression An expression that returns a SignatureInfo object.

Parameters

Name Required/Optional Data type Description
ParentWindow Required IOleWindow Contains a handle to the window containing the certificate selection dialog box.

Example

The following example displays a dialog box that allows the user to select a digital certificate.

Sub SelectDigCertificate(ByVal intHwnd As Long) 
Dim objSignatureInfo As SignatureInfo 
Dim objDialog As Object 
 
objDialog = objSignatureInfo.SelectSignatureCertificate(intHwnd) 
 
End Sub

See also

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.