InternetDial and InternetHangUp in Vb.Net

  • Thread starter Thread starter Joe Smith
  • Start date Start date
J

Joe Smith

Where I can get resource on how to convert my vb 6.0 code to vb.net 2003
code.
InternetDial and InternetHangUp are the two functions I am looking for.
Any great mind would like to throw the VB.Net code for the above two
statement.
Your response is highly appreciated.
Thank you,
Joe
 
Joe Smith said:
Where I can get resource on how to convert my vb 6.0 code to vb.net 2003
code.

Micrososoft Visual Basic Code Advisor
<URL:http://msdn.microsoft.com/library/en-us/dnvb600/html/vb6_FixItRuleTool.asp>

Papers and information on migration:

InternetDial and InternetHangUp are the two functions I am looking for.

\\\
Private Declare Auto Function InternetDial Lib "wininet.dll" ( _
ByVal hwndParent As IntPtr, _
ByVal lpszConnectoid As String, _
ByVal dwFlags As Int32, _
ByRef lpdwConnection As Int32, _
ByVal dwReserved As Int32 _
) As Int32

Private Declare Function InternetHangUp Lib "wininet.dll" ( _
ByVal dwConnection As Int32, _
ByVal dwReserved As Int32 _
) As Int32
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top