|
-
May 21st, 2000, 02:59 PM
#1
Thread Starter
Lively Member
What do you want to do? provide some more detail as what you are expecting to do and how you want to do it?
Do you want too...
a). dial in to the internet
b). view a website?
c). get emial?
d). open a private website (https)
Provide some more information please...
Regards,
 Paul Rivoli 
---------------------
[email protected]
http://members.dingoblue.net.au/~privoli
-
May 21st, 2000, 07:01 PM
#2
Junior Member
Internet Connection
Aye!
I just want to connect to the Internet using the password and the username provided by my ISP!!!!
Like the dial-up control pannel!!
Thanks
-
May 22nd, 2000, 04:37 AM
#3
dialup/email send
I also need to do dialup:
My app run unattended, and must dialup the internet and send a email and disconnect automatically. I can send using Winsock OK, but it calls the windows dialup networking dialogs to do connection. If connection fails then they stop for user action...
How can I do all the dialup/emailsend/disconnect in VB6 code, handling all errors, etc??
-
May 22nd, 2000, 12:56 PM
#4
Lively Member
Here is couple example:
Public Sub ModemCallWin95_98()
Dim WIN
WIN = Shell("rundll32.exe rnaui.dll,RnaDial " & "Connect_Name", 1)
End Sub
Public Sub ModemCallWinNT()
Dim NT
NT = Shell("rasphone.exe [-d Connect_Name]", 1)
End Sub
Or if you want using API, look here:
http://www.totalenviro.com/PlatformVB
And if you want using ActiveX control, look here:
http://www.catalyst.com/
And download here free SocketWrench package.
- Dj4
-
May 26th, 2000, 09:11 AM
#5
New Member
RasDial.Exe (Not RasPhone.Exe)
I think the EXE is actually RASDIAL.EXE not RASPHONE.EXE under Windows NT. I use it on a daily basis from within batch files to do what your talking about. Type the following at the command line for more information.
RASDIAL /?
-
May 26th, 2000, 04:30 PM
#6
Junior Member
Inet??
thanks for the replies but where do I have to put my accounts name and my password for my ISP???
neon
-
May 27th, 2000, 06:09 AM
#7
I have checked Catalyist SOCKETWRENCH freeware
It looks great for doing dialup. They also reply quickly to help email!
you can use the normal Win dialup networking phone book
(when you make new net connection from start/Accessories/dialupnetwork/make new connection)
or code in your own name/numbers.
Thanks for this lead...
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
|