To use in a VB6 project or Microsoft Office VBA application,
include the file basFirmaSAT.bas
in your project and call the functions provided.
The "raw" functions beginning SAT_
are identical to the C/C++ functions.
New in [v10.0]:
There are now equivalent wrapper functions (beginning sat
) for all the raw functions.
These wrapper functions are safer and simpler to use and are the recommended interface.
The old "raw" SAT_ functions are deprecated for use in VBA/VB6 but retained for legacy purposes.
Here is a simple VBA/VB6 program for testing.
Public Sub ShowVersion()
Dim nRet As Long
nRet = satVersion()
Debug.Print "Version=" & nRet
End Sub