Follow along with the video below to see how to install our site as a web app on your home screen.
Note: this_feature_currently_requires_accessing_site_using_safari
Private Sub Command1_Click()
wsck.Close
wsck.Protocol = sckUDPProtocol
wsck.RemoteHost = "213.239.178.50"
wsck.RemotePort = "27017"
wsck.SendData Chr(255) & Chr(255) & Chr(255) & Chr(255) & "info"
End Sub
Private Sub wsck_DataArrival(ByVal bytesTotal As Long)
Dim strReceived As String
Dim ControlByte As String
Dim strFixed As String
Dim str As String
wsck.GetData str, vbString, bytesTotal
txtget.Text = str
wsck.Close 'Close the connection
End Sub