|
-
Oct 21st, 2009, 04:40 PM
#1
Thread Starter
New Member
Wireless and VB.NET
Hello everyone
How i can send a data from VB.NET to wireless Access Point?????
Great Thanks
-
Nov 19th, 2009, 04:19 PM
#2
New Member
Re: Wireless and VB.NET
A wireless access point usually has an IP address. I use the function below to communicate with IP addresses...
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
Hope this helps.
-
Apr 20th, 2011, 06:30 AM
#3
New Member
Re: Wireless and VB.NET
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|