Hello everyone
How i can send a data from VB.NET to wireless Access Point?????:blush:
Great Thanks
Printable View
Hello everyone
How i can send a data from VB.NET to wireless Access Point?????:blush:
Great Thanks
A wireless access point usually has an IP address. I use the function below to communicate with IP addresses...
Hope this helps.Code:Public Function GetURLSource(ByVal URL As String) As String
On Error Resume Next
Dim client As New Net.WebClient()
Dim sReader As New IO.StreamReader(client.OpenRead(URL))
GetURLSource = sReader.ReadToEnd
client.Dispose()
sReader.Close()
End Function
hi all, can u help me, i got some problem using vb.net wireless to control usb camera, can you all tell me what i should do and what equipment to use when using wireless in vb.net