home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 5_2007-2008.ISO / data / Zips / Fracas20867210102007.psc / Fracas_VB / About.frm next >
Text File  |  2001-05-02  |  2KB  |  73 lines

  1. VERSION 5.00
  2. Begin VB.Form About 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "About Fracas..."
  5.    ClientHeight    =   2295
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   3195
  9.    Icon            =   "About.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    NegotiateMenus  =   0   'False
  14.    ScaleHeight     =   2295
  15.    ScaleWidth      =   3195
  16.    ShowInTaskbar   =   0   'False
  17.    StartUpPosition =   2  'CenterScreen
  18.    Begin VB.CommandButton Command1 
  19.       Caption         =   "OK"
  20.       Height          =   375
  21.       Left            =   960
  22.       TabIndex        =   1
  23.       Top             =   1800
  24.       Width           =   1335
  25.    End
  26.    Begin VB.Label Label3 
  27.       Caption         =   "Jason Merlo..."
  28.       Height          =   615
  29.       Left            =   240
  30.       TabIndex        =   3
  31.       Top             =   960
  32.       Width           =   6855
  33.    End
  34.    Begin VB.Label Label2 
  35.       Caption         =   "Fracas..."
  36.       Height          =   255
  37.       Left            =   120
  38.       TabIndex        =   2
  39.       Top             =   1680
  40.       Width           =   6855
  41.    End
  42.    Begin VB.Label Label1 
  43.       Caption         =   "Landmass..."
  44.       Height          =   495
  45.       Left            =   240
  46.       TabIndex        =   0
  47.       Top             =   240
  48.       Width           =   6855
  49.    End
  50. End
  51. Attribute VB_Name = "About"
  52. Attribute VB_GlobalNameSpace = False
  53. Attribute VB_Creatable = False
  54. Attribute VB_PredeclaredId = True
  55. Attribute VB_Exposed = False
  56. Option Explicit
  57. Option Base 1
  58.  
  59. Private Sub Command1_Click()
  60.  
  61. About.Hide
  62.  
  63. End Sub
  64.  
  65. Private Sub Form_Load()
  66.  
  67. Label1.Caption = VersionStr
  68. Label2.Caption = ""
  69. Label3.Caption = WebStr & vbCrLf & EmailStr
  70.  
  71. End Sub
  72.  
  73.