home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / VISUAL_B / FERRAMEN / MANYTHNG / ORIGINAL.FRM (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1994-01-25  |  754 b   |  25 lines

  1. VERSION 2.00
  2. Begin Form Original 
  3.    AutoRedraw      =   -1  'True
  4.    BackColor       =   &H00000000&
  5.    BorderStyle     =   0  'None
  6.    ControlBox      =   0   'False
  7.    Height          =   6255
  8.    Icon            =   ORIGINAL.FRX:0000
  9.    Left            =   510
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   390
  12.    ScaleMode       =   3  'Pixel
  13.    ScaleWidth      =   525
  14.    Top             =   1380
  15.    Visible         =   0   'False
  16.    Width           =   7995
  17. ' Original -- this form is used to save the original windows
  18. '   desktop bitmap that exists when the screen saver is
  19. '   started
  20. Option Explicit
  21. Sub Form_Load ()
  22.     ' stretch to full screen
  23.     'Move 0, 0, Screen.Width, Screen.Height
  24. End Sub
  25.