home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 4_2005-2006.ISO / data / Zips / ImageViewe2015318232006.psc / frmAbout.frm < prev    next >
Text File  |  2006-08-22  |  3KB  |  92 lines

  1. VERSION 5.00
  2. Begin VB.Form frmAbout 
  3.    Appearance      =   0  'Flat
  4.    BackColor       =   &H80000005&
  5.    BorderStyle     =   4  'Fixed ToolWindow
  6.    Caption         =   "About NIXON ImageViewer"
  7.    ClientHeight    =   4440
  8.    ClientLeft      =   1545
  9.    ClientTop       =   2220
  10.    ClientWidth     =   4755
  11.    LinkTopic       =   "Form2"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    Picture         =   "frmAbout.frx":0000
  15.    ScaleHeight     =   4440
  16.    ScaleWidth      =   4755
  17.    ShowInTaskbar   =   0   'False
  18.    Begin VB.CommandButton cmdClose 
  19.       Caption         =   "Close"
  20.       Height          =   375
  21.       Left            =   105
  22.       TabIndex        =   2
  23.       Top             =   3915
  24.       Width           =   1215
  25.    End
  26.    Begin VB.Label lblWebsite 
  27.       BackColor       =   &H00FFFFFF&
  28.       Caption         =   "Visit Nixon on the web at members.shaw.ca/nixon.com"
  29.       Height          =   465
  30.       Left            =   225
  31.       TabIndex        =   4
  32.       Top             =   3270
  33.       Width           =   4005
  34.    End
  35.    Begin VB.Label lblContact 
  36.       BackColor       =   &H00FFFFFF&
  37.       Caption         =   "Questions? Comments? Complaints? Suggestions? E-mail lcaa9@netscape.net"
  38.       Height          =   465
  39.       Left            =   225
  40.       TabIndex        =   3
  41.       Top             =   2760
  42.       Width           =   4005
  43.    End
  44.    Begin VB.Label lblCopyright 
  45.       BackColor       =   &H00FFFFFF&
  46.       Caption         =   "Copyright ⌐ 2005-2006 NIXON Software Corporation. Some rights reserved."
  47.       Height          =   465
  48.       Left            =   225
  49.       TabIndex        =   1
  50.       Top             =   2250
  51.       Width           =   4005
  52.    End
  53.    Begin VB.Label lblVersion 
  54.       BackColor       =   &H00FFFFFF&
  55.       Caption         =   "Version"
  56.       Height          =   375
  57.       Left            =   240
  58.       TabIndex        =   0
  59.       Top             =   1815
  60.       Width           =   3975
  61.    End
  62.    Begin VB.Image imgIcon 
  63.       Height          =   720
  64.       Left            =   3960
  65.       Picture         =   "frmAbout.frx":0037
  66.       Top             =   690
  67.       Width           =   720
  68.    End
  69.    Begin VB.Image imgTitle 
  70.       Height          =   1500
  71.       Left            =   90
  72.       Picture         =   "frmAbout.frx":02EB
  73.       Top             =   150
  74.       Width           =   3675
  75.    End
  76. End
  77. Attribute VB_Name = "frmAbout"
  78. Attribute VB_GlobalNameSpace = False
  79. Attribute VB_Creatable = False
  80. Attribute VB_PredeclaredId = True
  81. Attribute VB_Exposed = False
  82.  
  83.  
  84. Private Sub cmdClose_Click()
  85. Unload Me
  86. End Sub
  87.  
  88. Private Sub Form_Load()
  89. lblVersion.Caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision
  90. End Sub
  91.  
  92.