📄 frmabout.frm
字号:
VERSION 5.00
Begin VB.Form frmAbout
BackColor = &H00FFC0C0&
BorderStyle = 3 'Fixed Dialog
Caption = "guanyuxitong"
ClientHeight = 1935
ClientLeft = 3630
ClientTop = 3765
ClientWidth = 6300
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Icon = "frmAbout.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1935
ScaleWidth = 6300
ShowInTaskbar = 0 'False
Begin VB.CommandButton Command1
Caption = "&OK"
Default = -1 'True
Height = 375
Left = 4905
TabIndex = 2
Top = 1065
Width = 1215
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "感谢使用本系统,如有问题请发邮件告诉我 ok!"
BeginProperty Font
Name = "隶书"
Size = 18
Charset = 134
Weight = 400
Underline = -1 'True
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 975
Left = 720
TabIndex = 3
Top = 120
Width = 3855
End
Begin VB.Image Image1
Height = 480
Left = 2640
Picture = "frmAbout.frx":030A
Top = 1320
Width = 480
End
Begin VB.Label lblVersion
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Height = 300
Left = 4380
TabIndex = 1
Top = 1425
Width = 1755
End
Begin VB.Label lblLink
BackStyle = 0 'Transparent
Caption = "xiezhengwen114@163.com"
BeginProperty Font
Name = "WST_Ital"
Size = 18
Charset = 2
Weight = 700
Underline = -1 'True
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H80000002&
Height = 495
Left = 720
MouseIcon = "frmAbout.frx":045C
MousePointer = 99 'Custom
TabIndex = 0
Top = 1080
Width = 3555
End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
'
' About Form for the VBCodeLibrary project
'
' http://www.codeguru.com/vb
'
' Chris Eastwood Feb. 1999
'
' - Updated April 1999 - new CodeGuru Bitmap
'
Private Sub ExecuteLink(ByVal sLinkTo As String)
'
' Execute the link to http://www.codeguru.com/vb
' (if possible) - or the new 'mailto:ME!'
'
On Error Resume Next
Dim lRet As Long
Dim lOldCursor As Long
lOldCursor = Screen.MousePointer
Screen.MousePointer = vbHourglass
lRet = ShellExecute(0, "open", sLinkTo, "", vbNull, SW_SHOWNORMAL)
If lRet >= 0 And lRet <= 0 Then
Screen.MousePointer = vbDefault
MsgBox "Error Opening Link to " & sLinkTo & vbCrLf & vbCrLf & Err.LastDllError, , "frmAbout::ExecuteLink"
End If
Screen.MousePointer = vbDefault
End Sub
Private Sub Command1_Click()
Unload Me
End Sub
Private Sub Form_Load()
lblVersion.Caption = App.Major & "." & App.Minor & "." & App.Revision
End Sub
Private Sub lblLink_Click()
ExecuteLink lblLink.Caption
Unload Me
End Sub
Private Sub lblMailTo_Click()
ExecuteLink "mailto:chris.eastwood@codeguru.com"
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -