home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l406 / 4.ddi / ABOUTBO2.FR_ / ABOUTBO2.bin (.txt)
Encoding:
Visual Basic Form  |  1992-10-21  |  2.4 KB  |  83 lines

  1. VERSION 2.00
  2. Begin Form AboutBox 
  3.    BorderStyle     =   3  'Fixed Double
  4.    Caption         =   "About Visual Data"
  5.    ControlBox      =   0   'False
  6.    FontBold        =   -1  'True
  7.    FontItalic      =   0   'False
  8.    FontName        =   "System"
  9.    FontSize        =   9.75
  10.    FontStrikethru  =   0   'False
  11.    FontUnderline   =   0   'False
  12.    Height          =   2580
  13.    Icon            =   0
  14.    Left            =   2130
  15.    LinkMode        =   1  'Source
  16.    LinkTopic       =   "Form1"
  17.    MaxButton       =   0   'False
  18.    MinButton       =   0   'False
  19.    ScaleHeight     =   2175
  20.    ScaleWidth      =   5055
  21.    Top             =   2205
  22.    Width           =   5175
  23.    Begin PictureBox PIC_Icon 
  24.       BorderStyle     =   0  'None
  25.       Height          =   600
  26.       Left            =   480
  27.       Picture         =   ABOUTBOX.FRX:0000
  28.       ScaleHeight     =   600
  29.       ScaleWidth      =   480
  30.       TabIndex        =   1
  31.       Top             =   240
  32.       Width           =   480
  33.    End
  34.    Begin CommandButton OkayButton 
  35.       Cancel          =   -1  'True
  36.       Caption         =   "&OK"
  37.       Default         =   -1  'True
  38.       Height          =   360
  39.       Left            =   2040
  40.       TabIndex        =   0
  41.       Top             =   1560
  42.       Width           =   1080
  43.    End
  44.    Begin Label LAB_1 
  45.       Alignment       =   2  'Center
  46.       Caption         =   "Microsoft Visual Basic Pro"
  47.       Height          =   264
  48.       Left            =   1320
  49.       TabIndex        =   2
  50.       Top             =   360
  51.       Width           =   2532
  52.    End
  53.    Begin Label LAB_2 
  54.       Alignment       =   2  'Center
  55.       Caption         =   "Visual Data Sample Application"
  56.       Height          =   216
  57.       Left            =   1200
  58.       TabIndex        =   3
  59.       Top             =   840
  60.       Width           =   2892
  61.    End
  62.    Begin Label Label1 
  63.       Alignment       =   2  'Center
  64.       Caption         =   "Version 1.00"
  65.       Height          =   216
  66.       Left            =   1320
  67.       TabIndex        =   4
  68.       Top             =   1080
  69.       Width           =   2532
  70.    End
  71. Sub Form_KeyPress (KeyAscii As Integer)
  72.   Unload Me
  73. End Sub
  74. Sub Form_Load ()
  75.   Left = (Screen.Width - Width) / 2
  76. End Sub
  77. Sub OkayButton_Click ()
  78.   Unload Me
  79. End Sub
  80. Sub OkayButton_KeyPress (KeyAscii As Integer)
  81.   Unload Me
  82. End Sub
  83.