home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / vb_code2 / textedit / textedit.gbl < prev    next >
Text File  |  1992-08-24  |  996b  |  25 lines

  1. Declare Function GetPrivateProfileInt Lib "Kernel" (ByVal lpApplicationName As String, ByVal lpKeyName As String, ByVal nDefault As Integer, ByVal lpFileName As String) As Integer
  2. Declare Function GetPrivateProfileString Lib "Kernel" (ByVal lpApplicationName As String, ByVal lpKeyName As String, ByVal lpDefault As String, ByVal lpReturnedString As String, ByVal nSize As Integer, ByVal lpFileName As String) As Integer
  3. Declare Function WritePrivateProfileString Lib "Kernel" (ByVal lpApplicationName As String, ByVal lpKeyName As String, ByVal lpString As String, ByVal lpFileName As String) As Integer
  4.  
  5. Global Path As String
  6.  
  7. Global Const TRUE = -1
  8. Global Const FALSE = 0
  9.  
  10. Global Const MODAL = 1
  11.  
  12. Global NL As String
  13. Global Wildcard As String
  14. Global FullFilePath As String
  15. Global FileSelected As Integer
  16.  
  17. Global FindStr As String
  18. Global ReplaceStr As String
  19. Global GlobalRep As Integer
  20. Global VerifyON As Integer
  21. Global StartTop As Integer
  22. Global CancelOp As Integer
  23.  
  24.  
  25.