Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
How to change display settings: screen resolution, screen refresh rate
Adding and deleting Scheduled Tasks using NetScheduleJob API functions
Custom GDI+ class
Capturing keyboard activity of another application with the Raw Input API (VFP9)
Converting Unicode data from the Clipboard to a character string using a given code page
Enumerating data formats currently available on the clipboard
Winsock: sending email messages (SMTP, port 25)
Custom FTP Class for Visual FoxPro application
Splash Screen for the VFP application
Detecting changes in connections to removable drives (VFP9)
How to activate Windows Calculator
How to download a file from the FTP server using FtpGetFile
Mapping and disconnecting network drives
Enumerating raw input devices attached to the system (keyboard, mouse, human interface device)
How to put a vertical text scrolling on the form (a movie cast)
How to convert a bitmap file to monochrome format (1 bpp)
Custom HttpRequest class (WinHTTP)
Establishing connection using the SQLDriverConnect
Using Font and Text functions
Displaying bitmap using the AlphaBlend function
GDI+: copying to the Clipboard (a) image of active FoxPro window/form, (b) image file
Using WM_COPYDATA for interprocess communication (VFP9)
Displaying animated images on FoxPro form with BitBlt and StretchBlt functions
How to make a VFP form fading out when released (GDI version)
Converting strings between ANSI and OEM

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
 
DECLARE SHORT CharToOem IN user32;
    STRING lpszSrc,;
    STRING @ lpszDst
 
DECLARE SHORT OemToChar IN user32;
    STRING lpszSrc,;
    STRING @ lpszDst
 
* source string of Cyrillic characters (1251)
lcSrc = "ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÜÛÚÝÞß" +;
    "àáâãäåæçèéêëìíîïðñòóôõö÷øùüûúýþÿ"
 
* a buffer for destination string
lcDst = SPACE(Len(lcSrc))
 
? lcSrc 
 
* converting from ANSI to OEM
= CharToOem (lcSrc, @lcDst)
? lcDst
 
* converting back from OEM to ANSI
= OemToChar (lcDst, @lcSrc)
? lcSrc 
 
 
 

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
510 bytes  
Created: 2001-08-10 12:00:00  
Modified: 2001-09-28 16:45:30  
Visits in 7 days: 61  
Listed functions:
CharToOem
OemToChar
Printer friendly API declarations
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 (184.72.184.104)
4 sec.Banners
1.66 hrs.Example: 'Retrieving graphic capabilities of default printer'
 Example: 'Using the CreateFile'
3.56 hrs.Example: 'Bitmap Class for Visual FoxPro application'
 Function: 'JetBeginTransaction'
Function group: 'Extensible Storage Engine (ESE, Jet Blue)'
7.18 hrs.Function: 'CeGetStoreInformation'
Function group: 'Remote Application Programming (RAPI)'
 Example: 'How to make a VFP form fading out when released (GDI+ version)'
9.72 hrs.Example: 'Custom HttpRequest class (WinHTTP)'
10.27 hrs.Function: 'GetKBCodePage'
1 day(s)Example: 'How to enable the SE_SHUTDOWN_NAME privilege for the application'
Google
Advertise here!