home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Programmer'…arterly (Limited Edition) / Visual_Basic_Programmers_Journal_VB-CD_Quarterly_Limited_Edition_1995.iso / code / ch19code / declares.bas < prev    next >
BASIC Source File  |  1994-10-17  |  455b  |  18 lines

  1. Attribute VB_Name = "modDeclares"
  2. Option Explicit
  3.  
  4. ' Classes used througout the application.
  5. Public Application As New Application
  6. Public Windows As New Windows
  7.  
  8. ' Unique number to use in Window Index and caption.
  9. Public giWindowsCount As Integer
  10.  
  11. ' Internal variable that tracks active window.
  12. Public gActiveWindow As Window
  13.  
  14. ' Internal flag used when calling the Delete and
  15. ' Create Window methods.
  16. Public Const SOURCE_INTERNAL = &h20
  17.  
  18.