Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Problems with InternetDial()
Message
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Fonctions Windows API
Divers
Thread ID:
00703322
Message ID:
00703328
Vues:
24
>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--
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform