frmAbout.frm
上传用户:dohkov
上传日期:2007-06-18
资源大小:35k
文件大小:4k
源码类别:

家庭/个人应用

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frmAbout 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "关于 光盘管家"
  5.    ClientHeight    =   1485
  6.    ClientLeft      =   2340
  7.    ClientTop       =   1935
  8.    ClientWidth     =   4065
  9.    ClipControls    =   0   'False
  10.    Icon            =   "frmAbout.frx":0000
  11.    LinkTopic       =   "Form2"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   1024.973
  15.    ScaleMode       =   0  'User
  16.    ScaleWidth      =   3817.245
  17.    ShowInTaskbar   =   0   'False
  18.    Begin VB.PictureBox picIcon 
  19.       Appearance      =   0  'Flat
  20.       AutoSize        =   -1  'True
  21.       BackColor       =   &H80000004&
  22.       BorderStyle     =   0  'None
  23.       ClipControls    =   0   'False
  24.       ForeColor       =   &H80000008&
  25.       Height          =   480
  26.       Left            =   240
  27.       Picture         =   "frmAbout.frx":0442
  28.       ScaleHeight     =   337.12
  29.       ScaleMode       =   0  'User
  30.       ScaleWidth      =   337.12
  31.       TabIndex        =   1
  32.       Top             =   240
  33.       Width           =   480
  34.    End
  35.    Begin VB.CommandButton cmdOK 
  36.       Cancel          =   -1  'True
  37.       Caption         =   "确定"
  38.       Default         =   -1  'True
  39.       Height          =   345
  40.       Left            =   2760
  41.       TabIndex        =   0
  42.       Top             =   240
  43.       Width           =   1140
  44.    End
  45.    Begin VB.Label Label3 
  46.       AutoSize        =   -1  'True
  47.       Caption         =   "TronLin@sina.com"
  48.       BeginProperty Font 
  49.          Name            =   "宋体"
  50.          Size            =   9
  51.          Charset         =   134
  52.          Weight          =   400
  53.          Underline       =   -1  'True
  54.          Italic          =   0   'False
  55.          Strikethrough   =   0   'False
  56.       EndProperty
  57.       ForeColor       =   &H00FF0000&
  58.       Height          =   180
  59.       Left            =   1560
  60.       MouseIcon       =   "frmAbout.frx":0884
  61.       MousePointer    =   99  'Custom
  62.       TabIndex        =   6
  63.       ToolTipText     =   "写信给我"
  64.       Top             =   1080
  65.       Width           =   1440
  66.    End
  67.    Begin VB.Label Label2 
  68.       AutoSize        =   -1  'True
  69.       Caption         =   "Email:"
  70.       Height          =   180
  71.       Left            =   960
  72.       TabIndex        =   5
  73.       Top             =   1080
  74.       Width           =   540
  75.    End
  76.    Begin VB.Label Label1 
  77.       AutoSize        =   -1  'True
  78.       Caption         =   "出品: 忠霖软件创作室"
  79.       Height          =   180
  80.       Left            =   960
  81.       TabIndex        =   4
  82.       Top             =   840
  83.       Width           =   1800
  84.    End
  85.    Begin VB.Label lblTitle 
  86.       AutoSize        =   -1  'True
  87.       Caption         =   "光盘管家"
  88.       BeginProperty Font 
  89.          Name            =   "宋体"
  90.          Size            =   12
  91.          Charset         =   134
  92.          Weight          =   700
  93.          Underline       =   0   'False
  94.          Italic          =   0   'False
  95.          Strikethrough   =   0   'False
  96.       EndProperty
  97.       ForeColor       =   &H00000000&
  98.       Height          =   240
  99.       Left            =   960
  100.       TabIndex        =   2
  101.       Top             =   240
  102.       Width           =   1035
  103.    End
  104.    Begin VB.Label lblVersion 
  105.       AutoSize        =   -1  'True
  106.       Caption         =   "版本 beta 1.01"
  107.       Height          =   180
  108.       Left            =   960
  109.       TabIndex        =   3
  110.       Top             =   600
  111.       Width           =   1260
  112.    End
  113. End
  114. Attribute VB_Name = "frmAbout"
  115. Attribute VB_GlobalNameSpace = False
  116. Attribute VB_Creatable = False
  117. Attribute VB_PredeclaredId = True
  118. Attribute VB_Exposed = False
  119. Private Sub cmdOK_Click()
  120. Unload Me
  121. End Sub
  122. Private Sub Form_Load()
  123. CencerForm Me
  124. End Sub
  125. Private Sub Label3_Click()
  126. ShellExecute 0&, vbNullString, "mailto:tronlin@sina.com", vbNullString, vbNullString, vbNormalFocus
  127. End Sub