Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Problems with InternetDial()
Message
 
 
To
23/09/2002 09:03:25
General information
Forum:
Visual FoxPro
Category:
Windows API functions
Miscellaneous
Thread ID:
00703322
Message ID:
00703328
Views:
23
>hello,
>
>I'm using the folloging API:
>DECLARE Integer InternetDial IN WinInet ;
>	Integer nHandle, String @lpcDialUp, ;
>	Integer nAccessType, Long @nConnect_Handle, ;
>	Integer nFlags
>This function returns very often 0 for nConnect_Handle, although the dialler successfully established a connection:
>lnRetVal = InternetDial(lnhwnd, lcDialUp, lnAccType, lnConnect_Handle, 0)
>?lnConnect_Handle && returns 0, but connection established!
>Why does this happen? I run the same code in VB and it never seems to give me a problem.

You've to pass variable by reference to allow function to change it.
lnRetVal = InternetDial(lnhwnd, lcDialUp, lnAccType, @lnConnect_Handle, 0)
>Also for nAccessType the help indicates that this is a constant:
>INTERNET_DIAL_UNATTENDED = &H8000
>How can I interpret this value in VFP?
INTERNET_DIAL_UNATTENDED = 0x8000
--sb--
Previous
Reply
Map
View

Click here to load this message in the networking platform