home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / vb_code1 / grid_eg / grideg.bas next >
BASIC Source File  |  1993-04-01  |  337b  |  10 lines

  1. Option Explicit
  2. '   Function Declarations
  3. Declare Function GetFocus Lib "User" () As Integer
  4. Declare Function SendMessage Lib "User" (ByVal hWnd As Integer, ByVal wMsg As Integer, ByVal wParam As Integer, lParam As Any) As Long
  5. Global maxcolwidth(4) As Integer
  6. Global maxrowheight(15) As Integer
  7. Global Const KEY_RETURN = &HD
  8.  
  9.  
  10.