home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / remind1a / form3.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1999-10-05  |  1.7 KB  |  60 lines

  1. VERSION 5.00
  2. Begin VB.Form Form3 
  3.    BackColor       =   &H80000001&
  4.    Caption         =   "Quit?"
  5.    ClientHeight    =   1770
  6.    ClientLeft      =   5685
  7.    ClientTop       =   4755
  8.    ClientWidth     =   4635
  9.    LinkTopic       =   "Form3"
  10.    Moveable        =   0   'False
  11.    ScaleHeight     =   1770
  12.    ScaleWidth      =   4635
  13.    Begin VB.CommandButton Command2 
  14.       Caption         =   "No"
  15.       Height          =   495
  16.       Left            =   2280
  17.       TabIndex        =   2
  18.       Top             =   960
  19.       Width           =   1695
  20.    End
  21.    Begin VB.CommandButton Command1 
  22.       Caption         =   "Yes"
  23.       Height          =   495
  24.       Left            =   240
  25.       TabIndex        =   1
  26.       Top             =   960
  27.       Width           =   1695
  28.    End
  29.    Begin VB.Label Label2 
  30.       BackColor       =   &H00000000&
  31.       BackStyle       =   0  'Transparent
  32.       Caption         =   "Do you really want to quit?"
  33.       BeginProperty Font 
  34.          Name            =   "MS Sans Serif"
  35.          Size            =   18
  36.          Charset         =   0
  37.          Weight          =   400
  38.          Underline       =   0   'False
  39.          Italic          =   0   'False
  40.          Strikethrough   =   0   'False
  41.       EndProperty
  42.       ForeColor       =   &H00000000&
  43.       Height          =   555
  44.       Left            =   120
  45.       TabIndex        =   0
  46.       Top             =   120
  47.       Width           =   4440
  48.    End
  49. Attribute VB_Name = "Form3"
  50. Attribute VB_GlobalNameSpace = False
  51. Attribute VB_Creatable = False
  52. Attribute VB_PredeclaredId = True
  53. Attribute VB_Exposed = False
  54. Private Sub Command1_Click()
  55. End Sub
  56. Private Sub Command2_Click()
  57. Form2.Show
  58. Unload Me
  59. End Sub
  60.