
Excel Visual Basic commands:

—————————————————————
Private Sub R1_ON_Click()
Dim ie As Object
Set ie = CreateObject(“Internetexplorer.Application”)
ie.Visible = False
ie.Navigate “http://192.168.1.9/FF0101”
End Sub
—————————————————————
Private Sub R1_OFF_Click()
Dim ie As Object
Set ie = CreateObject(“Internetexplorer.Application”)
ie.Visible = False
ie.Navigate “http://192.168.1.9/FF0100”
End Sub
—————————————————————

Help information:
- Assign a macro to a Form or a Control button
https://support.office.com/en-us/article/Assign-a-macro-to-a-Form-or-a-Control-button-d58edd7d-cb04-4964-bead-9c72c843a283
- How to assign a macro to an option button in Excel
https://support.microsoft.com/en-us/help/141689/how-to-assign-a-macro-to-an-option-button-in-excel
