📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "发送邮件"
ClientHeight = 1455
ClientLeft = 60
ClientTop = 345
ClientWidth = 4710
LinkTopic = "Form1"
ScaleHeight = 1455
ScaleWidth = 4710
StartUpPosition = 3 '窗口缺省
Begin VB.TextBox Text1
Height = 375
Left = 0
TabIndex = 1
Top = 600
Width = 2535
End
Begin VB.CommandButton Command1
Caption = "发邮件"
Height = 375
Left = 2880
TabIndex = 0
Top = 600
Width = 1335
End
Begin VB.Label Label1
Caption = "邮箱地址:"
Height = 375
Left = 0
TabIndex = 2
Top = 120
Width = 1695
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Label3_Click()
Dim HyperJump
Dim w
w = Label3.Caption
HyperJump = ShellExecute(0&, vbNullString, w, vbNullString, vbNullString, vbNormalFocus)
End Sub
Private Sub Command1_Click()
k = "mailto:" + Text1.Text
ShellExecute hwnd, "open", k, vbNullString, vbNullString, SW_SHOW
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -