home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / VISUAL_B / FERRAMEN / LEONGINI / LEONGINI.TXT < prev    next >
Encoding:
Text File  |  1994-04-06  |  617 b   |  22 lines

  1. ' LEONGINI.TXT   V1.01
  2.  
  3. Declare Function Attach Lib "profile.vbx" (ini As Control, attachedControl As Control, ByVal property As String) As Integer
  4.  
  5. ' Values of the Read property
  6. Global Const ReadOnLoad = 0
  7. Global Const ReadManual = 1
  8. Global Const ReadNow = 2
  9.  
  10. ' Values of the Write property
  11. Global Const WriteOnChange = 0
  12. Global Const WriteManual = 1
  13. Global Const WriteNow = 2
  14. Global Const WriteOnUnload = 3
  15. Global Const DeleteEntry = 4
  16. Global Const DeleteSection = 5
  17.  
  18. ' Values of the Property property
  19. Global Const PropertyCaption = 0
  20. Global Const PropertyTag = 1
  21. Global Const PropertyText = 2
  22.