|
-
Jul 19th, 2007, 08:59 AM
#1
Thread Starter
Frenzied Member
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!
-
Jul 19th, 2007, 10:40 AM
#2
Frenzied Member
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?
-
Jul 19th, 2007, 10:45 AM
#3
Thread Starter
Frenzied Member
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!
-
Jul 19th, 2007, 11:41 AM
#4
Frenzied Member
Re: Configure PDA for Bluetooth dial up
Hi,
vb Code:
Public Function Connect_To_Default_Server() As Integer
Dim Response As WebResponse = Nothing
Dim Request As WebRequest
Try
' Retrieve the requested page.
Request = WebRequest.Create("http://www.google.com")
Response = Request.GetResponse
Catch webex As WebException
Connect_To_Default_Server = 1
Catch ex As Exception
Connect_To_Default_Server = 2
Finally
If Not Response Is Nothing Then
Response.Close()
End If
End Try
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
-
Jul 19th, 2007, 12:59 PM
#5
Thread Starter
Frenzied Member
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.
-
Jul 19th, 2007, 01:58 PM
#6
Frenzied Member
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
-
Aug 8th, 2007, 07:17 AM
#7
Thread Starter
Frenzied Member
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!
-
Aug 8th, 2007, 09:42 AM
#8
Frenzied Member
Re: Configure PDA for Bluetooth dial up
Hi,
yes - system.web I would guess
Pete
-
Aug 8th, 2007, 10:04 AM
#9
Thread Starter
Frenzied Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|