How can we help?

Using Auron SMS Component in Visual Basic 6


The SMS Component can be used in Visual Basic 6.x or higher.

You can find working examples of how to use the Auron SMS Component in VB6 on github.

In Visual Basic, go to the ‘Project/References…’ menu item and check the box next to SMS Component Type Library.

Now, you can declare and create SMS Component objects.

The following code shows how to declare, create and use one of the SMS Component objects:

Dim objGsm As AxSms.Gsm                                ' Declaration
Set objGsm = New AxSms.Gsm                             ' Creation

' Display version information
Me.Caption = "Auron SMS Component " & objGsm.Version