home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / graphing_i79723552002.psc / Form2.frm (.txt) next >
Encoding:
Visual Basic Form  |  2002-03-19  |  1.1 KB  |  38 lines

  1. VERSION 5.00
  2. Begin VB.Form Form2 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    ClientHeight    =   1560
  5.    ClientLeft      =   45
  6.    ClientTop       =   45
  7.    ClientWidth     =   3720
  8.    ClipControls    =   0   'False
  9.    ControlBox      =   0   'False
  10.    LinkTopic       =   "Form2"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   1560
  14.    ScaleWidth      =   3720
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   2  'CenterScreen
  17.    Begin VB.Label Label1 
  18.       BackColor       =   &H00000000&
  19.       Caption         =   $"Form2.frx":0000
  20.       ForeColor       =   &H000000FF&
  21.       Height          =   1575
  22.       Left            =   0
  23.       TabIndex        =   0
  24.       Top             =   0
  25.       Width           =   3735
  26.    End
  27. Attribute VB_Name = "Form2"
  28. Attribute VB_GlobalNameSpace = False
  29. Attribute VB_Creatable = False
  30. Attribute VB_PredeclaredId = True
  31. Attribute VB_Exposed = False
  32. Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
  33. If KeyCode = vbKeyEscape Then
  34. Form2.Hide
  35. mainfrm.Show
  36. End If
  37. End Sub
  38.