Share via


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

Concepts

SignatureInfo Object

SignatureInfo Object Members