home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 3_2004-2005.ISO / Data / Zips / A_great_ut177987882004.psc / forms / frmAbout.frm next >
Text File  |  2004-08-08  |  2KB  |  77 lines

  1. VERSION 5.00
  2. Begin VB.Form frmAbout 
  3.    BorderStyle     =   1  'Fixed Single
  4.    ClientHeight    =   4425
  5.    ClientLeft      =   45
  6.    ClientTop       =   330
  7.    ClientWidth     =   4680
  8.    LinkTopic       =   "Form1"
  9.    MaxButton       =   0   'False
  10.    MinButton       =   0   'False
  11.    ScaleHeight     =   4425
  12.    ScaleWidth      =   4680
  13.    StartUpPosition =   3  'Windows Default
  14.    Begin VB.CommandButton cmdClose 
  15.       Caption         =   "Ok!"
  16.       Height          =   375
  17.       Left            =   2880
  18.       TabIndex        =   2
  19.       Top             =   3960
  20.       Width           =   1695
  21.    End
  22.    Begin VB.PictureBox picRBG 
  23.       Height          =   3975
  24.       Left            =   0
  25.       Picture         =   "frmAbout.frx":0000
  26.       ScaleHeight     =   3915
  27.       ScaleWidth      =   2595
  28.       TabIndex        =   0
  29.       Top             =   0
  30.       Width           =   2655
  31.    End
  32.    Begin VB.Label lblURL 
  33.       Caption         =   "http://rbgCODE.com"
  34.       BeginProperty Font 
  35.          Name            =   "Verdana"
  36.          Size            =   11.25
  37.          Charset         =   0
  38.          Weight          =   400
  39.          Underline       =   -1  'True
  40.          Italic          =   0   'False
  41.          Strikethrough   =   0   'False
  42.       EndProperty
  43.       ForeColor       =   &H00FF0000&
  44.       Height          =   255
  45.       Left            =   120
  46.       MousePointer    =   14  'Arrow and Question
  47.       TabIndex        =   3
  48.       Top             =   4080
  49.       Width           =   2535
  50.    End
  51.    Begin VB.Label lblInfo 
  52.       Caption         =   $"frmAbout.frx":1B82
  53.       Height          =   3975
  54.       Left            =   2760
  55.       TabIndex        =   1
  56.       Top             =   0
  57.       Width           =   1815
  58.    End
  59. End
  60. Attribute VB_Name = "frmAbout"
  61. Attribute VB_GlobalNameSpace = False
  62. Attribute VB_Creatable = False
  63. Attribute VB_PredeclaredId = True
  64. Attribute VB_Exposed = False
  65. Private Sub cmdClose_Click()
  66.  Unload Me
  67. End Sub
  68.  
  69. Private Sub Form_Load()
  70.  Me.Icon = frmMain.Icon
  71.  Me.Caption = "About quickTray " & App.Major & "." & App.Minor & "." & App.Revision
  72. End Sub
  73.  
  74. Private Sub lblURL_Click()
  75.  xstart "http://rbgCODE.com"
  76. End Sub
  77.