I need to place the information in a textbox or label , not a message, the idea is a continuous reading of the data , I have tried but the information is not updated (use the timer function)
Example:
Sub Button1_Click
Dim r As Boolean
Dim a As Int
r = myWifi.ABLoadWifi()
If r = True Then
Else
End Sub
TKS
Example:
Sub Button1_Click
Dim r As Boolean
Dim a As Int
r = myWifi.ABLoadWifi()
If r = True Then
- Msgbox (myWifi.ABGetCurrentWifiInfo().SSID, "")
- Msgbox (myWifi.ABGetWifiNetwork(a).SSID & " " & myWifi.ABGetWifiNetwork(a).Level, "")
Else
- Msgbox(myWifi.ABWifiLastError,"")
End Sub
TKS