📄 inputfrm.frm
字号:
VERSION 5.00
Begin VB.Form InputForm
BorderStyle = 1 'Fixed Single
Caption = "StealthMail"
ClientHeight = 1380
ClientLeft = 2328
ClientTop = 2376
ClientWidth = 4932
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1380
ScaleWidth = 4932
ShowInTaskbar = 0 'False
Begin VB.CommandButton Cancel
Caption = "Close"
Height = 372
Left = 4080
TabIndex = 2
Top = 840
Width = 732
End
Begin VB.CommandButton OK
Caption = "OK"
Height = 372
Left = 4080
TabIndex = 1
Top = 240
Width = 732
End
Begin VB.TextBox FileBox
Height = 288
Left = 240
TabIndex = 0
Top = 840
Width = 3492
End
Begin VB.Label Label1
Caption = "Please Enter Output Filename:"
Height = 252
Left = 264
TabIndex = 3
Top = 360
Width = 3492
End
End
Attribute VB_Name = "InputForm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
InputForm.Left = (Screen.Width - InputForm.Width) / 2
End Sub
Private Sub Cancel_Click()
InputForm.Hide
DoEvents
End Sub
Private Sub OK_click()
InputForm.Hide
DoEvents
End Sub
Private Sub FileBox_KeyPress(Keyascii As Integer)
If Keyascii = 13 Then InputForm.Hide
DoEvents
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -