Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
InternetWriteFile
Message
 
 
À
12/11/2002 00:55:06
Information générale
Forum:
Visual FoxPro
Catégorie:
Fonctions Windows API
Divers
Thread ID:
00721022
Message ID:
00721915
Vues:
8
Here's a sample code that shows how to use InternetGetLastResponseInfo API function.
DECLARE Integer InternetGetLastResponseInfo IN WinInet ;
		Integer @nError, String @lpcBuffer, Integer @nBuffSize
...
lnError = GetLastError()
IF lnError = ERROR_INTERNET_EXTENDED_ERROR
  lcErrorMsg=SPACE(1024)
  lnSize=LEN(lcErrorMsg)
  =InterNetGetLastResponseInfo(@lnError,@lcErrorMsg,@lnSize)
  lcErrorMsg = SUBSTR(lcErrorMsg,1,lnSize)
ENDIF
>Hi,
>Could you please show me how to declare InternetGetLastResponseInfo() and how to use it?
>
>Thank you
--sb--
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform