home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / tool / various / iniwiz / readme.txt < prev    next >
Text File  |  1994-04-12  |  2KB  |  71 lines

  1. INIWIZARD CUSTOM CONTROL
  2. -------------------------
  3.  
  4. DESCRIPTION
  5. ------------
  6. The IniWizard control provides easy access to the windows .INI files.
  7. When developing your own applications with Visual Basic v3.0 you can create
  8. .ini files or modify .ini files using this control.
  9.  
  10.  
  11.  
  12. EVENTS AND PROPERTIES OF THE CONTROL
  13. -------------------------------------
  14.  
  15. EVENTS :
  16. --------
  17. There is one event for this custom control.
  18.  
  19. Sub IniWizard1_Changed (IniSection As String)
  20.  
  21. End Sub
  22.  
  23. This event is triggered whenever there is a change to the WIN.INI file by any
  24. other application. Which causes window to send a WM_WININICHANGE message to all
  25. other top level windows. The section in which change had taken place is passed
  26. in IniSection String Variable.
  27.  
  28. PROPERTIES
  29. -----------
  30. The custom properties supported by the control are
  31.  
  32. 1. File     :- The File name of the .INI file to be read or writted or deleted.
  33. 2. Section    :- The Section in the .INI file which contains the entry
  34. 3. Entry    :- The Entry that must be read/writtten or deleted from the .INI file.
  35. 4. Value    :- The string that is read or written from the .INI file.
  36. 5. Notify    :- This Boolean Flag when set to false makes the Control to not
  37.            trigger the Changed event even when it receives an WM_WININICHANGE
  38.            message.  The default value is false. So set it to true to process
  39.            the IniWizard1_changed event.
  40.  
  41. The standard properties supported by this control are
  42. 1. Name
  43. 2. Tag
  44.  
  45.  
  46.  
  47. LIMITATIONS
  48. ------------
  49.  
  50. 1. Due to the design nature of the control, You cannot place more than one
  51.    Iniwizard control on a single form.
  52.  
  53. 2. There is a system wide limit on the number of Applications creating an
  54.    instance of the Control.  This value is fixed at compile time and can be
  55.    changed. ( Look at MAX_VBXS defined in INIWIZ.H  )
  56.  
  57.  
  58.  
  59.  
  60. This .INI control was designed for and tested with Visual Basic v3.0 and Windows v3.1.  It was written
  61. using Microsoft C/C++ 7.0 compiler and Windows SDK.
  62.  
  63. Copyright Note    This .INI control for Visual Basic is public domain and is provided with source code.
  64. Please feel free to make any changes to it.
  65. Visual Basic v3.0, Windows v3.1 ,Microsoft C/C++ 7.0 and Windows SDK
  66. are copyrights of Microsoft Corp.
  67.         Please feel free to send suggestions and comments to
  68.         Vivek Venugopalan -  CompuServe ID 73512,3675.
  69.  
  70.  
  71.