To access RadiusCore from another Visual Basic for Applications project (i.e. .xlsm file), you first need to add RadiusCore as a reference to your VBA project.
Ensure RadiusCore is installed and enabled on your system.
Open Excel’s Visual Basic for Applications (shortcut ALT
+F11
).
Select ‘Tools’ -> ‘References…’
Find RadiusCore in the Available References list. Select it using the checkbox and press OK.
In the Project Explorer, RadiusCore.xlam should be listed as a Reference.
You can now access RadiusCore via the CLI as follows:
Sub radius_Sample()
RadiusCore.Refresh All:=True
End Sub