📄 frmabout.frm
字号:
VERSION 5.00
Begin VB.Form frmabout
Caption = "关于阿拉伯数字转换成汉字"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 5550
LinkTopic = "Form2"
ScaleHeight = 3195
ScaleWidth = 5550
StartUpPosition = 1 'CenterOwner
Begin VB.CommandButton Command1
Caption = "关闭"
Height = 375
Left = 3960
TabIndex = 1
Top = 2520
Width = 855
End
Begin VB.Label Label4
Alignment = 2 'Center
Caption = "发邮件给我"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 375
Left = 3360
TabIndex = 4
Top = 1920
Width = 1575
End
Begin VB.Label Label3
Caption = "转载请保持原文完整和转告作者 "
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 3480
TabIndex = 3
Top = 1200
Width = 1815
End
Begin VB.Label Label2
Caption = "使阿拉伯数字转换成汉字的例程"
Height = 495
Left = 3600
TabIndex = 2
Top = 480
Width = 1455
End
Begin VB.Label Label1
Alignment = 2 'Center
Caption = "欢迎光临天涯海角"
BeginProperty Font
Name = "宋体"
Size = 15.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 375
Left = 240
TabIndex = 0
Top = 2400
Width = 2775
End
Begin VB.Image Image1
Height = 1950
Left = 120
Picture = "frmabout.frx":0000
Top = 120
Width = 3090
End
End
Attribute VB_Name = "frmabout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Private Sub Command1_Click()
Unload Me
End Sub
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label1.ForeColor = vbBlue
Label4.ForeColor = vbBlue
End Sub
Private Sub Label1_Click()
Call ShellExecute(hwnd, "Open", "http://xlh.126.com", "", App.Path, 1)
End Sub
Private Sub Label1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label1.ForeColor = vbRed
End Sub
Private Sub Label4_Click()
Call ShellExecute(hwnd, "Open", "mailto:lhxie@126.com", "", App.Path, 1)
End Sub
Private Sub Label4_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label4.ForeColor = vbRed
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -