Using Win32 functions in Visual FoxPro Image Gallery
String
..msdn
CharLower
CharToOem
CharUpper
OemToChar
StrCmpC
StrFormatByteSize
StrFromTimeInterval
StrToInt
StrToIntEx
StrTrim
Code examples:
Converting strings between ANSI and OEM
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: 51  
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 (54.226.5.29)
4 sec.Function: 'FindFirstChangeNotification'
3.07 hrs.Example: 'Using FlashWindowEx to flash the taskbar button of the VFP application'
3.08 hrs.Function: 'FindWindowEx'
Function group: 'Window'
4.55 hrs.Example: 'Retrieving names for the registered clipboard formats'
 Example: 'GDI+: printing vertical text on VFP reports via generated images (VFP9)'
5.93 hrs.Function: 'CeDeleteFile'
6.17 hrs.Gallery
Page 8
10.13 hrs.Example: 'GDI+: printing vertical text on VFP reports via generated images (VFP8)'
 Example: 'Drawing icons associated with the VFP main window'
20.22 hrs.Example: 'Testing Clipboard functions: emptying the clipboard'
Google
Advertise here!