home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / codeprnt / readfr / form3.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1994-11-20  |  2.5 KB  |  81 lines

  1. VERSION 2.00
  2. Begin Form Form3 
  3.    BackColor       =   &H00FFFF00&
  4.    Caption         =   "About ReadForms"
  5.    ClientHeight    =   2610
  6.    ClientLeft      =   4560
  7.    ClientTop       =   2940
  8.    ClientWidth     =   3960
  9.    Height          =   3015
  10.    Left            =   4500
  11.    LinkTopic       =   "Form3"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   2610
  15.    ScaleWidth      =   3960
  16.    Top             =   2595
  17.    Width           =   4080
  18.    Begin PictureBox Picture1 
  19.       BorderStyle     =   0  'None
  20.       Height          =   975
  21.       Left            =   960
  22.       Picture         =   FORM3.FRX:0000
  23.       ScaleHeight     =   975
  24.       ScaleWidth      =   1935
  25.       TabIndex        =   3
  26.       Top             =   840
  27.       Width           =   1935
  28.    End
  29.    Begin CommandButton Command1 
  30.       BackColor       =   &H00808080&
  31.       Caption         =   "&OK"
  32.       Height          =   375
  33.       Left            =   3120
  34.       TabIndex        =   0
  35.       Top             =   2040
  36.       Width           =   735
  37.    End
  38.    Begin Label Label2 
  39.       BackColor       =   &H00FFFF00&
  40.       Caption         =   "CompuServe -- 76516,1274"
  41.       FontBold        =   -1  'True
  42.       FontItalic      =   0   'False
  43.       FontName        =   "MS Sans Serif"
  44.       FontSize        =   9.75
  45.       FontStrikethru  =   0   'False
  46.       FontUnderline   =   0   'False
  47.       ForeColor       =   &H00FF0000&
  48.       Height          =   255
  49.       Left            =   120
  50.       TabIndex        =   2
  51.       Top             =   2040
  52.       Width           =   2895
  53.    End
  54.    Begin Label Label1 
  55.       BackColor       =   &H00FFFF00&
  56.       Caption         =   "A Freeware Visual Basic application by Bill Ludwig."
  57.       FontBold        =   -1  'True
  58.       FontItalic      =   0   'False
  59.       FontName        =   "MS Sans Serif"
  60.       FontSize        =   9.75
  61.       FontStrikethru  =   0   'False
  62.       FontUnderline   =   0   'False
  63.       ForeColor       =   &H00000000&
  64.       Height          =   1095
  65.       Left            =   840
  66.       TabIndex        =   1
  67.       Top             =   120
  68.       Width           =   2415
  69.    End
  70. Sub Command1_Click ()
  71. form3.Hide
  72. End Sub
  73. Sub Form_Activate ()
  74. 'this keeps the windows on top....  (see .BAS module also)
  75. SetWindowPos form3.hWnd, -1, 0, 0, 0, 0, &H50
  76. End Sub
  77. Sub Form_Load ()
  78. Left = (screen.Width - Width) / 2
  79. Top = (screen.Height - Height) / 4
  80. End Sub
  81.