home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / VISUAL_B / CODIGO_1 / MVHELP / ABOUT.FRM (.txt) next >
Encoding:
Visual Basic Form  |  1994-01-10  |  3.4 KB  |  110 lines

  1. VERSION 2.00
  2. Begin Form frmAbout 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   3  'Fixed Double
  5.    Caption         =   "About"
  6.    ClientHeight    =   2595
  7.    ClientLeft      =   1245
  8.    ClientTop       =   1605
  9.    ClientWidth     =   5535
  10.    ControlBox      =   0   'False
  11.    FillColor       =   &H00C0C0C0&
  12.    ForeColor       =   &H00C0C0C0&
  13.    Height          =   3060
  14.    Left            =   1155
  15.    LinkTopic       =   "Form2"
  16.    MaxButton       =   0   'False
  17.    MinButton       =   0   'False
  18.    ScaleHeight     =   2595
  19.    ScaleWidth      =   5535
  20.    Top             =   1230
  21.    Width           =   5715
  22.    Begin CommandButton Command1 
  23.       Caption         =   "OK"
  24.       Height          =   375
  25.       Left            =   2520
  26.       TabIndex        =   1
  27.       Top             =   2040
  28.       Width           =   855
  29.    End
  30.    Begin PictureBox Picture1 
  31.       AutoSize        =   -1  'True
  32.       Height          =   510
  33.       Left            =   240
  34.       Picture         =   ABOUT.FRX:0000
  35.       ScaleHeight     =   480
  36.       ScaleWidth      =   480
  37.       TabIndex        =   0
  38.       Top             =   240
  39.       Width           =   510
  40.    End
  41.    Begin Line Line1 
  42.       BorderWidth     =   2
  43.       X1              =   360
  44.       X2              =   5160
  45.       Y1              =   1440
  46.       Y2              =   1440
  47.    End
  48.    Begin Label Label3 
  49.       Alignment       =   2  'Center
  50.       BackStyle       =   0  'Transparent
  51.       Caption         =   "Copyright 
  52.  1994 Robert W. McGregor.  Use Freely."
  53.       Height          =   255
  54.       Left            =   360
  55.       TabIndex        =   5
  56.       Top             =   1560
  57.       Width           =   4815
  58.    End
  59.    Begin Label Label2 
  60.       Alignment       =   2  'Center
  61.       BackStyle       =   0  'Transparent
  62.       Caption         =   "Demo of Context Sensitive Help using Viewer"
  63.       Height          =   255
  64.       Left            =   360
  65.       TabIndex        =   4
  66.       Top             =   1080
  67.       Width           =   4815
  68.    End
  69.    Begin Label Label1 
  70.       BackStyle       =   0  'Transparent
  71.       Caption         =   "Context Sensitive Help With Multimedia Viewer"
  72.       FontBold        =   -1  'True
  73.       FontItalic      =   0   'False
  74.       FontName        =   "MS Sans Serif"
  75.       FontSize        =   18
  76.       FontStrikethru  =   0   'False
  77.       FontUnderline   =   0   'False
  78.       ForeColor       =   &H00FF0000&
  79.       Height          =   855
  80.       Index           =   0
  81.       Left            =   960
  82.       TabIndex        =   2
  83.       Top             =   135
  84.       Width           =   4335
  85.    End
  86.    Begin Label Label1 
  87.       BackStyle       =   0  'Transparent
  88.       Caption         =   "Context Sensitive Help With Multimedia Viewer"
  89.       FontBold        =   -1  'True
  90.       FontItalic      =   0   'False
  91.       FontName        =   "MS Sans Serif"
  92.       FontSize        =   18
  93.       FontStrikethru  =   0   'False
  94.       FontUnderline   =   0   'False
  95.       ForeColor       =   &H00808080&
  96.       Height          =   855
  97.       Index           =   1
  98.       Left            =   1010
  99.       TabIndex        =   3
  100.       Top             =   160
  101.       Width           =   4335
  102.    End
  103. Option Explicit
  104. Sub Command1_Click ()
  105.   Unload Me
  106. End Sub
  107. Sub Form_Load ()
  108.   Move screen.Height \ 2 - Height \ 2, screen.Width \ 2 - Width \ 2
  109. End Sub
  110.