home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_BAS / PWBROW.ZIP / ABOUT.FRM next >
Text File  |  1994-01-27  |  3KB  |  90 lines

  1. VERSION 2.00
  2. Begin Form frmAbout 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   1  'Fixed Single
  5.    Caption         =   "About Version Browser"
  6.    ClientHeight    =   3105
  7.    ClientLeft      =   3510
  8.    ClientTop       =   2685
  9.    ClientWidth     =   3825
  10.    Height          =   3570
  11.    Icon            =   ABOUT.FRX:0000
  12.    Left            =   3420
  13.    LinkTopic       =   "Form1"
  14.    ScaleHeight     =   3105
  15.    ScaleWidth      =   3825
  16.    Top             =   2310
  17.    Width           =   4005
  18.    Begin CommandButton cbOK 
  19.       Caption         =   "OK"
  20.       Height          =   375
  21.       Left            =   2880
  22.       TabIndex        =   1
  23.       Top             =   2640
  24.       Width           =   735
  25.    End
  26.    Begin PictureBox pbWinMag 
  27.       Height          =   855
  28.       Left            =   120
  29.       Picture         =   ABOUT.FRX:0302
  30.       ScaleHeight     =   825
  31.       ScaleWidth      =   2865
  32.       TabIndex        =   0
  33.       Top             =   120
  34.       Width           =   2895
  35.    End
  36.    Begin Label Label3 
  37.       BackStyle       =   0  'Transparent
  38.       Caption         =   "Written by Karen Kenworthy"
  39.       Height          =   255
  40.       Left            =   120
  41.       TabIndex        =   4
  42.       Top             =   2760
  43.       Width           =   2535
  44.    End
  45.    Begin Label Label4 
  46.       BackStyle       =   0  'Transparent
  47.       Caption         =   "Described in December, 1993; January 1994 and February 1994 ""Power Windows"" columns."
  48.       Height          =   615
  49.       Left            =   120
  50.       TabIndex        =   5
  51.       Top             =   2040
  52.       Width           =   3135
  53.    End
  54.    Begin Label Label2 
  55.       BackStyle       =   0  'Transparent
  56.       Caption         =   "Copyright 1993-4 WINDOWS Magazine"
  57.       Height          =   255
  58.       Left            =   120
  59.       TabIndex        =   3
  60.       Top             =   1680
  61.       Width           =   3495
  62.    End
  63.    Begin Label Label1 
  64.       BackStyle       =   0  'Transparent
  65.       Caption         =   "Version Browser 1.2"
  66.       FontBold        =   -1  'True
  67.       FontItalic      =   0   'False
  68.       FontName        =   "MS Sans Serif"
  69.       FontSize        =   18
  70.       FontStrikethru  =   0   'False
  71.       FontUnderline   =   0   'False
  72.       Height          =   375
  73.       Left            =   120
  74.       TabIndex        =   2
  75.       Top             =   1080
  76.       Width           =   3615
  77.    End
  78. End
  79.  
  80. Sub cbOK_Click ()
  81.     Unload frmAbout
  82. End Sub
  83.  
  84. Sub Form_Load ()
  85.     ' center the About box on the screen
  86.     frmAbout.Left = (Screen.Width / 2) - (frmAbout.ScaleWidth / 2)
  87.     frmAbout.Top = (Screen.Height / 2) - (frmAbout.ScaleHeight / 2)
  88. End Sub
  89.  
  90.