Results 1 to 9 of 9

Thread: Configure PDA for Bluetooth dial up

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Aug 2006
    Posts
    1,806

    Configure PDA for Bluetooth dial up

    Hi Peeps,

    I have an o2 mobile and want to configure my PDA so it uses the mobile to connect to the internet but I don't know the settings for o2.

    Any help

    Cheers,

    Jiggy!

  2. #2
    Frenzied Member
    Join Date
    Oct 2005
    Posts
    1,286

    Re: Configure PDA for Bluetooth dial up

    Hi,
    they should be set up already, but http://www.filesaveas.com/ has a list of all the carrier settings.

    Is this what you mean, or are you trying to connect to the internet programmatically?
    Pete Vickers
    MVP - Device Application Development
    http://www.gui-innovations.com http://mobileworld.appamundi.com/blogs/

  3. #3

    Thread Starter
    Frenzied Member
    Join Date
    Aug 2006
    Posts
    1,806

    Re: Configure PDA for Bluetooth dial up

    Yes that was it; I found another site and have created a connection with works great. Do you know how in vb.net cf call the connection and close the connection. I am buying from software for FTPS and I need to open the connection first.

    Cheer,

    Jiggy!

  4. #4
    Frenzied Member
    Join Date
    Oct 2005
    Posts
    1,286

    Re: Configure PDA for Bluetooth dial up

    Hi,
    vb Code:
    1. Public Function Connect_To_Default_Server() As Integer
    2.  
    3.         Dim Response As WebResponse = Nothing
    4.         Dim Request As WebRequest
    5.  
    6.         Try
    7.  
    8.             ' Retrieve the requested page.
    9.             Request = WebRequest.Create("http://www.google.com")
    10.             Response = Request.GetResponse
    11.  
    12.         Catch webex As WebException
    13.             Connect_To_Default_Server = 1
    14.         Catch ex As Exception
    15.             Connect_To_Default_Server = 2
    16.         Finally
    17.             If Not Response Is Nothing Then
    18.                 Response.Close()
    19.             End If
    20.         End Try
    21.  
    22.  
    23.  
    24.     End Function

    Should establish a connection for you. If you need to drop the connection, you need to look more at TAPI - opennetcf.org have a TAPI component

    Pete
    Pete Vickers
    MVP - Device Application Development
    http://www.gui-innovations.com http://mobileworld.appamundi.com/blogs/

  5. #5

    Thread Starter
    Frenzied Member
    Join Date
    Aug 2006
    Posts
    1,806

    Re: Configure PDA for Bluetooth dial up

    Thank you mate for that; I want to connect to an FTP server so I assume I should put the FTP address in and it should dial across bluetooth to my mobile and connect.

  6. #6
    Frenzied Member
    Join Date
    Oct 2005
    Posts
    1,286

    Re: Configure PDA for Bluetooth dial up

    Hi,
    this will establish the connection - you can then connect to your FTP server, as you will have a connection

    Pete
    Pete Vickers
    MVP - Device Application Development
    http://www.gui-innovations.com http://mobileworld.appamundi.com/blogs/

  7. #7

    Thread Starter
    Frenzied Member
    Join Date
    Aug 2006
    Posts
    1,806

    Re: Configure PDA for Bluetooth dial up

    Hi Mate,

    It's been a while but I am at the stage where I am trying to use your example but it does not like webresponse or webrequest. Do I need to import something?

    Thanks mate,

    Jiggy!

  8. #8
    Frenzied Member
    Join Date
    Oct 2005
    Posts
    1,286

    Re: Configure PDA for Bluetooth dial up

    Hi,
    yes - system.web I would guess

    Pete
    Pete Vickers
    MVP - Device Application Development
    http://www.gui-innovations.com http://mobileworld.appamundi.com/blogs/

  9. #9

    Thread Starter
    Frenzied Member
    Join Date
    Aug 2006
    Posts
    1,806

    Re: Configure PDA for Bluetooth dial up

    Thanks mate, it was system.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