Framework EDI Reference. Methods and Properties
ediSecurities. DefaultCertSystemStoreName

Sets or gets the default Certificate System Store name.

Syntax:

Remarks

The following certificate store name are already predefined in the Windows Operating System:

If a system store name is not one of the predefined names listed above or not already existing then a new system store with the name is created.

When processing certificates the system store opened by default is "My".

Example:

Dim oEdiDoc As Fredi.ediDocument
Dim oSecurities As Fredi.ediSecurities

' Create instance of Framework EDI.
Set oEdiDoc = New Fredi.ediDocument

' Get securities object.
Set oSecurities = oEdiDoc.GetSecurities

' Set the store name.
oSecurities.DefaultCertSystemStoreName = "My"

MsgBox "Current Certificate Store is " & oSecurities.DefaultCertSystemStoreName

 
 

Sample

P_DefaultCertSystemStoreName.zip