📄 frmabout.frm
字号:
VERSION 5.00
Begin VB.Form frmAbout
BorderStyle = 4 'Fixed ToolWindow
Caption = "Form1"
ClientHeight = 1560
ClientLeft = 45
ClientTop = 315
ClientWidth = 4545
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1560
ScaleWidth = 4545
ShowInTaskbar = 0 'False
StartUpPosition = 1 '所有者中心
Begin VB.CommandButton cmdOk
Caption = "确定"
Height = 375
Left = 3240
TabIndex = 2
Top = 1080
Width = 1215
End
Begin VB.PictureBox Picture1
Appearance = 0 'Flat
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 495
Left = 240
Picture = "frmAbout.frx":0000
ScaleHeight = 495
ScaleWidth = 495
TabIndex = 0
Top = 120
Width = 495
End
Begin VB.Label lblAbout
Appearance = 0 'Flat
AutoSize = -1 'True
BackColor = &H80000005&
BackStyle = 0 'Transparent
Caption = "Label1"
ForeColor = &H80000008&
Height = 180
Left = 1080
TabIndex = 1
Top = 360
Width = 540
End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdOk_Click()
frmAbout.Hide
Unload frmAbout
End Sub
Private Sub Form_Load()
' Call init Dialog
Call InitAboutDialog
End Sub
Private Sub InitAboutDialog()
frmAbout.Caption = "关于 " + frmMain.Caption
lblAbout.Caption = frmMain.Caption + vbCrLf
lblAbout.Caption = lblAbout.Caption + "版本 : v 2.0 2006" + vbCrLf
lblAbout.Caption = lblAbout.Caption + "Email: zhangguangxiong@yahoo.com.cn"
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -