📄 frmcreatefolder.frm
字号:
VERSION 5.00
Begin VB.Form FrmCreateFolder
BorderStyle = 1 'Fixed Single
Caption = "文件夹名"
ClientHeight = 480
ClientLeft = 45
ClientTop = 330
ClientWidth = 2475
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 480
ScaleWidth = 2475
StartUpPosition = 2 '屏幕中心
Begin VB.TextBox Text1
Height = 270
Left = 0
TabIndex = 0
Top = 120
Width = 2415
End
End
Attribute VB_Name = "FrmCreateFolder"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Text1_KeyPress(KeyAscii As Integer)
'
If KeyAscii = 13 Then
FrmPass.WinSockCtl.SendData "118" & Text1.Text
FrmMain.Enabled = True
Unload Me
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -