Pcdsql – Kofax DM API User Manual

Page 128

Advertising
background image

108 C

HAPTER

3

PCDSQL

that allows the document security token (DST) to be shared
throughout the entire application.

'These are the Project-wide Global variables.

Private msDST As String


Private Sub Class_Initialize()

'msDST will be used to handle the DST.

msDST = ""

End Sub


'Used to set the DST within the DocInternal Class.

Public Sub SetDST(sInputString As String)

msDST = sInputString

End Sub


'Used to retrieve the DST from the DocInternal

'Class.

Public Function

GetDST

() As String

GetDST

= msDST

End Function

'Global Variable declaration section.

Advertising