home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / CODE_UPLOAD104101032000.psc / Form2.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  2000-08-19  |  1.7 KB  |  61 lines

  1. VERSION 5.00
  2. Begin VB.Form Form2 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "Ready"
  5.    ClientHeight    =   4515
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   5190
  9.    ControlBox      =   0   'False
  10.    LinkTopic       =   "Form2"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   4515
  14.    ScaleWidth      =   5190
  15.    StartUpPosition =   2  'CenterScreen
  16.    Begin VB.Timer Timer1 
  17.       Enabled         =   0   'False
  18.       Interval        =   3000
  19.       Left            =   210
  20.       Top             =   3105
  21.    End
  22.    Begin VB.CommandButton Command1 
  23.       Caption         =   "Take my picture!"
  24.       Height          =   405
  25.       Left            =   1320
  26.       TabIndex        =   1
  27.       Top             =   3975
  28.       Width           =   2610
  29.    End
  30.    Begin VB.Image Image1 
  31.       Height          =   2130
  32.       Left            =   1500
  33.       Picture         =   "Form2.frx":0000
  34.       Top             =   1950
  35.       Width           =   2160
  36.    End
  37.    Begin VB.Label Label1 
  38.       Caption         =   $"Form2.frx":1313
  39.       Height          =   2445
  40.       Left            =   45
  41.       TabIndex        =   0
  42.       Top             =   45
  43.       Width           =   5100
  44.    End
  45. Attribute VB_Name = "Form2"
  46. Attribute VB_GlobalNameSpace = False
  47. Attribute VB_Creatable = False
  48. Attribute VB_PredeclaredId = True
  49. Attribute VB_Exposed = False
  50. Private Sub Command1_Click()
  51.     Command1.Enabled = False
  52.     Command1.Caption = "Preparing to take photo..."
  53.     Screen.MousePointer = 11
  54.     Timer1.Enabled = True
  55. End Sub
  56. Private Sub Timer1_Timer()
  57.     Form3.Visible = True
  58.     Screen.MousePointer = 0
  59.     Unload Me
  60. End Sub
  61.