Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Internet constants value
Message
From
01/06/2002 08:49:07
Cetin Basoz
Engineerica Inc.
Izmir, Turkey
 
 
To
01/06/2002 08:40:33
General information
Forum:
Visual FoxPro
Category:
Windows API functions
Miscellaneous
Thread ID:
00663784
Message ID:
00663785
Views:
21
>what are the values of these constants.
>#DEFINE INTERNET_FLAG_RELOAD
>#DEFINE INTERNET_FLAG_KEEP_CONNECTION
>#DEFINE INTERNET_FLAG_NO_CACHE_WRITE
>
>i often check codes from VB forums and i have most of time problems to convert VB hexadecimal values to VFP values.
>how to make the convertion for these constants values ?
>
>Private Const INTERNET_FLAG_RELOAD = &H80000000
>Private Const INTERNET_FLAG_KEEP_CONNECTION = &H400000
>Private Const INTERNET_FLAG_NO_CACHE_WRITE = &H4000000

Kouaku,
&H stands for hexadecimal. VFP equivalant 0x. ie:

Private Const INTERNET_FLAG_RELOAD = &H80000000
Private Const INTERNET_FLAG_KEEP_CONNECTION = &H400000
Private Const INTERNET_FLAG_NO_CACHE_WRITE = &H4000000

#DEFINE INTERNET_FLAG_RELOAD 0x80000000
#DEFINE INTERNET_FLAG_KEEP_CONNECTION 0x400000
#DEFINE INTERNET_FLAG_NO_CACHE_WRITE 0x4000000

Cetin
Çetin Basöz

The way to Go
Flutter - For mobile, web and desktop.
World's most advanced open source relational database.
.Net for foxheads - Blog (main)
FoxSharp - Blog (mirror)
Welcome to FoxyClasses

LinqPad - C#,VB,F#,SQL,eSQL ... scratchpad
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform