Results 1 to 3 of 3

Thread: Wireless and VB.NET

  1. #1

    Thread Starter
    New Member
    Join Date
    Oct 2009
    Posts
    1

    Wireless and VB.NET

    Hello everyone

    How i can send a data from VB.NET to wireless Access Point?????

    Great Thanks

  2. #2
    New Member
    Join Date
    Mar 2009
    Posts
    2

    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.

  3. #3
    New Member
    Join Date
    Feb 2011
    Posts
    4

    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
  •  



Click Here to Expand Forum to Full Width