Mac to Win

4D - Documentation   Français   English   German   4th Dimension 2004, Command Theme List   4th Dimension 2004, Command Alphabetical List   4th Dimension 2004, Constant Theme List   Back   Previous   Next

version 6.0


Mac to Win (text) String

ParameterTypeDescription
textStringText expressed using Mac OS ASCII map
Function resultStringText expressed using Windows ANSI map

Description

The Mac to Win command returns a text expressed using the Windows ANSI map that is equivalent to the text you pass in text, which is expressed using the Mac OS ASCII map.

This command expects a Text type parameter that is expressed using the Mac OS ASCII map.

Generally, when running on Windows, you do not need to use this command to convert ASCII codes. When you copy or paste text between 4D and Windows or when you import or export data, 4D automatically performs these conversions. However, when you use disk read/write commands such as SEND PACKET or RECEIVE PACKET, you need to explicitly perform ASCII conversions. This is the main purpose of the Mac to Win command.

Within 4D, all the text values, fields, or variables that you have not yet converted to another ASCII map are Mac OS-encoded on both Macintosh and Windows. For more information, see the section ASCII Codes.

Note: This command replaces the CR (Carriage return) characters with CRLF (Carriage return + Line feed, ASCII codes 13 and 10) characters. Consequently, the text returned may be longer than the original text.

Example

On Windows, when you write characters into a document using SEND PACKET, if you do not use an output ASCII map for filtering characters from Mac OS to Windows (see USE ASCII MAP), you need to convert the text from Mac OS to Windows yourself. You can do it this way:

      ` ...
   SEND PACKET ($vhDocRef;Mac to Win(vtSomeText))
      ` ...

See Also

ASCII Codes, SEND PACKET, USE ASCII MAP, Win to Mac.


4D - Documentation   Français   English   German   4th Dimension 2004, Command Theme List   4th Dimension 2004, Command Alphabetical List   4th Dimension 2004, Constant Theme List   Back   Previous   Next