home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / VISUAL_B / FERRAMEN / LEONGINI / README.TXT < prev    next >
Encoding:
Text File  |  1994-04-28  |  5.4 KB  |  154 lines

  1. LEONG PROFILE CUSTOM CONTROLS
  2. -----------------------------
  3. VERSION 1.01
  4.  
  5. This file contains the latest details about the Leong INI
  6. Custom Controls:
  7.  -1- How to install the controls
  8.  -2- How to register the Custom controls
  9.  -3- How to get support
  10.  -4- List of tips and changes from previous release
  11.  
  12. The Windows Help file LEONGINI.HLP is the main source of
  13. information about the controls.  This file contains the most
  14. recent updates.
  15.  
  16. The major changes include the addition of a control that exposes
  17. properties of other controls in INI files, and Compuserve SWREG
  18. numbers.  More details are given at the end of this file.
  19.  
  20.  
  21. (1) TO INSTALL THE CONTROLS
  22. ---------------------------
  23.  
  24. When you unzip the distribution file LEONGINI.ZIP, you will have
  25. the following files:
  26.  
  27.   LEONGINI.VBX - The actual controls - copy this file to the
  28.                  C:\WINDOWS\SYSTEM directory, or its equivalent on
  29.                  your PC.
  30.  
  31.   LEONGINI.HLP - The Windows Help for the controls - copy this file
  32.                  to the C:\WINDOWS directory, or its equivalent.
  33.  
  34.   README.TXT   - This file - please keep this file for details of
  35.                  how to register the controls.
  36.  
  37.   LEONGINI.TXT - constants for use in your programs
  38.  
  39.   DEMO1.FRM    - Example of browsing through INI files using STRING
  40.   DEMO1.INI      control
  41.   DEMO1.MAK
  42.  
  43.   DEMO2.FRM    - Example of STRING, COLOR and FONT controls
  44.   DEMO2.MAK
  45.  
  46.   DEMO3.FRM    - Example program that remembers recently opened files
  47.   DEMO3.MAK
  48.  
  49.   EXPOSE.MAK   - Example of language translation using EXPOSE control
  50.   HELP.BAS
  51.   EXPOSE.FRM
  52.   TICKET.FRM
  53.   DEUTSCH.INI
  54.   ENGLISH.INI
  55.   ESPANOL.INI
  56.   FRANCAIS.INI
  57.  
  58.  
  59. (2) TO REGISTER
  60. ---------------
  61.  
  62. Please send:
  63.  -1- Your name, as known by Visual Basic
  64.  
  65.  -2- The serial number of your copy of Visual Basic
  66.  
  67.  You can find both of the items above by choosing About
  68.  Microsoft Visual Basic... on the Help menu of Visual Basic.
  69.  
  70.  -3- Contact details - address, CompuServe ID and phone number
  71.  
  72.  -4- Your payment
  73.  
  74. You can register in the CompuServe Software Registration Forum
  75. (GO SWREG), or you can send a cheque.  The SWREG numbers are shown
  76. in the table below.
  77.  
  78. We provide prices in UK pounds and in US dollars as a service.
  79. The dollar price includes our cost of conversion.  Please note
  80. that payments by cheque must be encashable at a major UK bank.
  81.  
  82. Prices                    UK Pounds     US Dollars   SWREG ID
  83. ------                    ---------     ----------   --------
  84. Registered Developer         15            25          2313
  85. Professional Version         20            35          2328
  86.  
  87. Please send the above to:
  88.         Mabel Leong
  89.         21 Meadowbank
  90.         Hitchin
  91.         Herts   SG4 0HX
  92.         UK
  93.  
  94.  
  95. (3) TO GET SUPPORT
  96. ------------------
  97.  
  98. If you are a registered user, please send us the same details as
  99. for registering.  Send Compuserve mail to [100332,3614] if possible,
  100. otherwise send post to the address above.  See the help file for
  101. more details.
  102.  
  103.  
  104. (4) TIPS
  105. --------
  106.  
  107. 1) In the Visual Basic development environment, don't forget to use
  108.    an explicit IniFile setting (see the Help file for details)
  109.  
  110. 2) If you use Notepad, or another editor, to change the contents of
  111.    an INI file your program won't see the change immediately because
  112.    Windows caches the most recently used INI file.  You must force
  113.    Windows to read another INI file after your edit so it has to
  114.    reread the one you've changed.  You can do this by referring to
  115.    more than one INI file in your program, or by running another
  116.    program that accesses a different INI file.
  117.  
  118. 3) This release of the custom controls has been tested with Visual
  119.    Basic Release 3.0.  It should also be compatible with Visual Basic
  120.    Release 2.0 - we welcome feedback.  It is not compatible with
  121.    Visual Basic Release 1.0, because various Version 2 features are
  122.    needed.  If you have Visual Basic 1, we'd strongly recommend you
  123.    to upgrade in any case.  If you have Visual C 1.00, we don't
  124.    expect you to want to use these controls.  Please let us know if
  125.    you want support for other platforms (no promises!).
  126.  
  127. ------------------- Release 1.01 below this line -------------------
  128.  
  129. 5) An Expose control has been added to allow you to save and restore
  130.    properties from all the controls in your application.  This can
  131.    be used to assist translation into other languages, for example.
  132.  
  133. 6) The IniString control has been fixed to allow the default value
  134.    to be returned if the Key, IniSection and IniFile are set to
  135.    values that referred to an actual entry in an INI file and then
  136.    changed to some values that did not refer to an actual entry (the
  137.    control kept the most recently accessed entry as its value).
  138.  
  139. 7) The Align property has been added so the controls can be placed
  140.    directly on an MDI form.
  141.  
  142. 8) The dynamic creation of additional controls at run time is fixed.
  143.    Dynamically created controls do not have any Attached controls
  144.    (Professional Edition).
  145.  
  146. 9) The Help file, LEONGINI.HLP, now includes the correct numerical
  147.    values for the OnChange and OnUnload values of the Write property,
  148.    plus details of the Expose control
  149.  
  150. 10) It is now possible to delete entries in INI files by setting the
  151.     Write property to 4 (Delete Entry) or 5 (Delete Section).
  152.  
  153. 11) A couple of obscure errors that sometimes resulted in crashes have
  154.     been fixed.