home *** CD-ROM | disk | FTP | other *** search
/ The Mother of All Windows Books / CD-MOM.iso / cd_mom / newsletr / vbz / vbz1-3 / ssfrm.frm < prev    next >
Text File  |  1993-06-24  |  1KB  |  46 lines

  1. VERSION 2.00
  2. Begin Form frmSave 
  3.    BackColor       =   &H00000000&
  4.    BorderStyle     =   0  'None
  5.    ControlBox      =   0   'False
  6.    Height          =   4470
  7.    Icon            =   0
  8.    KeyPreview      =   -1  'True
  9.    Left            =   1065
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   4065
  14.    ScaleWidth      =   4905
  15.    Top             =   1275
  16.    Width           =   5025
  17.    WindowState     =   2  'Maximized
  18.    Begin Timer timSave 
  19.       Enabled         =   0   'False
  20.       Left            =   120
  21.       Top             =   120
  22.    End
  23. End
  24. DefInt A-Z
  25.  
  26. Sub Form_KeyDown (KeyCode As Integer, Shift As Integer)
  27.     UserEvent
  28. End Sub
  29.  
  30. Sub Form_Load ()
  31.     Ok = DoEvents()
  32. End Sub
  33.  
  34. Sub Form_MouseDown (Button As Integer, Shift As Integer, X As Single, Y As Single)
  35.     UserEvent
  36. End Sub
  37.  
  38. Sub Form_MouseMove (Button As Integer, Shift As Integer, X As Single, Y As Single)
  39.     UserEvent
  40. End Sub
  41.  
  42. Sub timSave_Timer ()
  43.     TimerProc
  44. End Sub
  45.  
  46.