Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
Using Multimedia Command Strings to play MIDI files
Winsock: initializing the service in the VFP application
Enumerating MIDI output devices
How to write and read Window Properties for the specified window
Pocket PC: creating new database in the Object Store and copying Contacts Database records into it
Reading data from INI files
Retrieving configuration information for the specified server (Win98/Me)
Retrieving geometrical parameters of the system desktop window
Running a regular FoxPro form while main VFP window is minimized
Accessing a CD device (cdaudio) with Multimedia Command Strings
Current directory of the application
Managing Cookies
GDI+: converting text strings to images and saving in a graphics file
How to hide your program from the Close Program dialog (Win9* only)
Saving available locale records into a cursor
Copying files as a transacted operation (Vista)
GDI+: loading image file, drawing on it, saving the result to another file
Obtaining the bounding rectangle for the specified device context
Retrieving the IP-to-physical address mapping table
Retrieving the rectangle area where the mouse cursor is confined
Current System information
Retrieving top-child window for the VFP form
Retrieving window and menu help context identifiers
Simple MAPI: how to pick an email recipient from Outlook Express address book
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: 95  
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.Function: 'GetForegroundWindow'
Function group: 'Window'
48.37 min.Example: 'Custom FTP Class for Visual FoxPro application'
48.42 min.Example: 'Displaying animated images on FoxPro form with BitBlt and StretchBlt functions'
4.29 hrs.Function: 'SetTextColor'
 Function: 'GetDeviceDriverBaseName'
Function group: 'Performance Monitoring'
7.64 hrs.Function: 'ConnectToPrinterDlg'
1 day(s)Example: 'Confining Windows calculator inside the VFP main window'
 Function: 'EnumDisplayDevices'
Function group: 'Device Context'
 Function: 'CreateFont'
 Function: 'GetDC'
Google
Advertise here!