Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
InternetWriteFile
Message
 
 
To
12/11/2002 00:55:06
General information
Forum:
Visual FoxPro
Category:
Windows API functions
Miscellaneous
Thread ID:
00721022
Message ID:
00721915
Views:
7
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--
Previous
Reply
Map
View

Click here to load this message in the networking platform