home *** CD-ROM | disk | FTP | other *** search
/ On Hand / On_Hand_From_Softbank_1994_Release_2_Disc_2_1994.iso / 00202 / s / disk4 / aboutbo2.fr_ / aboutbo2.bin
Text File  |  1993-04-28  |  3KB  |  92 lines

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