📄 frmabout.frm
字号:
VERSION 5.00
Begin VB.Form frmabout
BackColor = &H00FFC0C0&
BorderStyle = 3 'Fixed Dialog
ClientHeight = 3555
ClientLeft = 705
ClientTop = 1800
ClientWidth = 5805
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frmabout.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3555
ScaleWidth = 5805
ShowInTaskbar = 0 'False
StartUpPosition = 1 '所有者中心
Begin VB.Frame Frame1
BackColor = &H00FFC0C0&
Caption = "给我写个信吧"
Height = 735
Left = 1560
TabIndex = 3
Top = 1680
Width = 3735
Begin VB.Label Label6
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "luzhiqin19@sina.com"
BeginProperty Font
Name = "Arial"
Size = 15.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF8080&
Height = 375
Left = 120
MouseIcon = "frmabout.frx":000C
MousePointer = 99 'Custom
TabIndex = 4
Top = 240
Width = 3495
End
End
Begin VB.CommandButton OK
BackColor = &H00FFC0C0&
Caption = "确定(&O)"
Default = -1 'True
Height = 375
Left = 4425
TabIndex = 2
Top = 3120
Width = 1335
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = " 在添加或修改记录时,双击年龄编辑框,程序将根据生辰自动计算年龄。"
Height = 375
Left = 1680
TabIndex = 8
Top = 600
Width = 3615
End
Begin VB.Label Label8
BackStyle = 0 'Transparent
Caption = "个人信息管理系统"
BeginProperty Font
Name = "宋体"
Size = 15.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C000C0&
Height = 735
Left = 120
TabIndex = 7
Top = 1080
Width = 1335
End
Begin VB.Label Label7
BackStyle = 0 'Transparent
Caption = "使用注意事项: "
Height = 255
Left = 1560
TabIndex = 6
Top = 360
Width = 1335
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = " 如果您对本软件有疑问或者有好的建议请给我写信,谢谢使用!"
Height = 375
Left = 1680
TabIndex = 5
Top = 1080
Width = 3615
End
Begin VB.Image Image2
BorderStyle = 1 'Fixed Single
Height = 540
Left = 480
Picture = "frmabout.frx":0316
Top = 360
Width = 540
End
Begin VB.Line Line1
BorderColor = &H00FFFFFF&
Index = 7
X1 = 50
X2 = 5750
Y1 = 180
Y2 = 180
End
Begin VB.Line Line1
BorderColor = &H00808080&
Index = 6
X1 = 50
X2 = 5750
Y1 = 195
Y2 = 195
End
Begin VB.Line Line1
BorderColor = &H00FFFFFF&
Index = 5
X1 = 50
X2 = 5750
Y1 = 105
Y2 = 105
End
Begin VB.Line Line1
BorderColor = &H00808080&
Index = 4
X1 = 50
X2 = 5750
Y1 = 120
Y2 = 120
End
Begin VB.Line Line1
BorderColor = &H00FFFFFF&
Index = 1
X1 = 50
X2 = 5750
Y1 = 45
Y2 = 45
End
Begin VB.Line Line1
BorderColor = &H00808080&
Index = 0
X1 = 50
X2 = 5750
Y1 = 60
Y2 = 60
End
Begin VB.Label Label2
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "所有权(C)属于作者(卢志勤)"
ForeColor = &H00000000&
Height = 180
Index = 1
Left = 1320
TabIndex = 1
Top = 2520
Width = 2250
End
Begin VB.Label Label5
BorderStyle = 1 'Fixed Single
Height = 45
Left = 120
TabIndex = 0
Top = 3000
Width = 5655
End
End
Attribute VB_Name = "frmabout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label6.ForeColor = &HFF8080
Label6.FontUnderline = False
End Sub
Private Sub Label6_Click()
Dim Email
Email = ShellExecute(0&, vbNullString, "mailto:zcjvcbe@263.net", vbNullString, vbNullString, vbNormalFocus)
End Sub
Private Sub Label6_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label6.ForeColor = RGB(0, 0, 255)
Label6.FontUnderline = True
End Sub
Private Sub OK_Click()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -