To use in a VB.NET/VB2010+ program, add a reference to the .NET Class Library file
diFirmaSatNet.dll
(usually installed in C:\Program Files (x86)\FirmaSAT
)
and add the line
Imports FirmaSAT
at the top of your code. Here is a simple "Hello World" program.
Imports FirmaSAT Module Module1 Sub Main() Dim n As Integer n = General.Version() Console.WriteLine("Version = {0}", n) End Sub End Module