home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 May / PCP163A.iso / Runimage / Cbuilder4 / Examples / Apps / RichEdit / README.TXT < prev    next >
Encoding:
Text File  |  1999-01-26  |  1.8 KB  |  48 lines

  1. //---------------------------------------------------------------------------
  2. // Borland C++Builder
  3. // Copyright (c) 1987, 1998 Borland International Inc.  All Rights Reserved.
  4. //---------------------------------------------------------------------------
  5.  
  6. TITLE:
  7.     RICHEDIT
  8.  
  9. DESCRIPTION:
  10.     A Rich Text word processor
  11.  
  12. DEMONSTRATES:
  13.     + TRichEdit, TPanel, TSpeedButton, TComboBox, TUpDown, TLabel, TBevel,
  14.       TFontDialog, TOpenDialog, TSaveDialog, TPrintDialog, TMainMenu
  15.     + Use of resource only Dll's for the languages English and German
  16.     + Runtime switching of resource only DLLs
  17.  
  18. COMMENTS:
  19.     Switching the language between English and German requires that
  20.     the resource only Dll's, located in the directories:
  21.      \DEU -> German language
  22.      \ENU -> English language
  23.     are copied to the applications directory. Otherwise the application 
  24.     will load the default resources from the EXE itself. 
  25.     For example:
  26.     - Open project group \Richgrp\Deu\Richdeu.bpg
  27.     - Build All Projects
  28.     - Copy generated Richedit.Enu, which is a resource only Dll into the
  29.       \Richedit directory
  30.     - Copy generated Richedit.Deu, which is a resource only Dll into the
  31.       \Richedit directory
  32.     - Start Richedit.Exe
  33.     - Select menu Language|German to see the program in German, or 
  34.     Language|English to see the program in English
  35.  
  36.     Creating a new resource only Dll: 
  37.     - Open Richedit.bpr from the \Examples\Richedit directory
  38.     - Build project
  39.     - Start the 'Resource Dll wizard' from the Object repository
  40.     - Follow the steps, selecting the language you want to create the Dll for
  41.       WARNING: The 'Resource Dll wizard' overwrites any previous translations!
  42.     - Translate the DFM's and RC file
  43.     - Build the new resource Dll
  44.     - Copy the resource DLL to the EXEs directory
  45.  
  46.  
  47.  
  48.