Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
Enumerating MIDI output devices
Minimizing all running applications
Retrieving the names of all sections in an initialization file
Accessing the list of Windows Recent Documents
Building a tree of subdirectories for a given path using FindFile functions
Converting strings between ANSI and OEM
Enumerating forms supported by a specified printer
GDI+: converting text strings to images and saving in a graphics file
GDI+: how to make VFP controls visually shake and shudder
Pocket PC: System Registry Viewer
Setting and retrieving the double-click time for the mouse
Basic Volume information
Closing Windows
How to check whether the system is 32-bit or 64-bit
Running a regular FoxPro form while main VFP window is minimized
Setting the Window Region for a form
Using Video Capture: enumerating installed capture drivers
Pocket PC: creating new database in the Object Store and copying Contacts Database records into it
Accessing LSA Policy object (Local Security Authority)
Drawing a window caption using the DrawCaption routine
Saving HKEY_LOCAL_MACHINE\\Software\\ODBC Registry Entries to an XML file
Using LoadLibrary
Using named pipes for interprocess communication
Accessing a CD device (cdaudio) with Multimedia Command Strings
Opening access to the Microsoft Internet functions for the application

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
More code examples    Listed functions    Add comment     W32 Constants      Translate this page Printer friendly version of this code sample
 
#DEFINE INTERNET_OPEN_TYPE_PRECONFIG 0
#DEFINE INTERNET_OPEN_TYPE_DIRECT 1
#DEFINE INTERNET_OPEN_TYPE_PROXY 3
#DEFINE INTERNET_FLAG_ASYNC 0x10000000
#DEFINE INTERNET_FLAG_FROM_CACHE 0x1000000
#DEFINE INTERNET_FLAG_OFFLINE 0x1000000
#DEFINE INTERNET_FLAG_CACHE_IF_NET_FAIL 0x10000
 
DECLARE INTEGER InternetOpen IN wininet;
    STRING sAgent, INTEGER lAccessType,;
    STRING sProxyName, STRING sProxyBypass,;
    STRING lFlags
 
DECLARE INTEGER InternetCloseHandle IN wininet INTEGER hInet
 
sAgent = "w32inetopen"  && you can choose any name, say "John Dow"
sProxyName = Chr(0)     && no proxy
sProxyBypass = Chr(0)   && nothing to bypass
lFlags = 0              && no flags used
 
hOpen = InternetOpen(sAgent, INTERNET_OPEN_TYPE_DIRECT,;
    sProxyName, sProxyBypass, lFlags)
 
IF hOpen <> 0
* close the access
    ? "Handle retrieved:", hOpen
    = InternetCloseHandle (hOpen)
ELSE
    ? "Failed to access the WinINet library"
ENDIF
 
 
 

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
943 bytes  
Created: 2001-07-15 12:00:00  
Modified: 2006-01-05 13:22:03  
Visits in 7 days: 75  
Listed functions:
InternetCloseHandle
InternetOpen
Printer friendly API declarations
My comment:
Actually this code does nothing. It just shows how to put your hands on the Internet functions to access HTTP, FTP etc.
Word Index links for this example:
Translate this page:
  Spanish    Portuguese    German    French    Italian  
FreeTranslation.com offers instant, free translations of text or web pages.
User Contributed Notes:
There are no notes on this subject.


Copyright © 2001-2013 News2News, Inc. Before reproducing or distributing any data from this site please ask for an approval from its owner. Unless otherwise specified, this page is for your personal and non-commercial use. The information on this page is presented AS IS, meaning that you may use it at your own risk. Microsoft Visual FoxPro and Windows are trade marks of Microsoft Corp. All other trademarks are the property of their respective owners. 

Privacy policy
Credits: PHP (4.4.9), an HTML-embedded scripting language, MySQL (5.1.55-log), the Open Source standard SQL database, AceHTML Freeware Version 4, freeware HTML Editor of choice.   Hosted by Korax Online Inc.
Last Topics Visited (54.234.231.49)
4 sec.Example: 'Using Common Controls: the Header Control'
41.62 min.Example: 'Running a regular FoxPro form while main VFP window is minimized'
41.67 min.Function: 'CeWriteRecordProps'
Function group: 'Remote Application Programming (RAPI)'
2.72 hrs.Example: 'Storing screen shot of a form to enhanced metafile (*.emf)'
2.83 hrs.Example: 'Reading list of folders and files on FTP server'
 Example: 'Detecting changes in connections to removable drives (VFP9)'
5.65 hrs.Example: 'Creating the Save dialog box to specify the drive, directory, and name of a file to save'
 Example: 'URL: splitting into its component parts'
9.13 hrs.Function: 'VkKeyScan'
Function group: 'Keyboard Input'
 Example: 'Creating irregularly shaped FoxPro form using transparency color key'
Google
Advertise here!