PDA

Click to See Complete Forum and Search --> : DUN-TEXTBOX HELP !!


Zulander1
Jan 1st, 2000, 01:40 AM
Hello
Frist : i need help with DUN(dial-Up-Network)
I what to know how could i use it with VB

Seconde : how do i drage and Drop a text form a text box in to Exeplorer, For exemple you have a Text1
text1.text="Hello"
How Do drag Hello in to the Desktop o what ever the location the User drag's to and it make a Hi.txt inside with a the Word Hello form text1
Thank's :-)
and Happy - NewYears

dj4
Jan 2nd, 2000, 01:00 PM
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

- Dj4