📄 form39.frm
字号:
VERSION 5.00
Begin VB.Form ONLY_NOs_IN_THE_TEXT_BOX
BackColor = &H00808080&
Caption = "Form39"
ClientHeight = 5475
ClientLeft = 60
ClientTop = 450
ClientWidth = 8505
LinkTopic = "Form39"
ScaleHeight = 5475
ScaleWidth = 8505
StartUpPosition = 3 'Windows Default
WindowState = 2 'Maximized
Begin VB.CommandButton Command1
Caption = "ONLY NOS IN THE TEXT BOX ELDE CLEARED"
BeginProperty Font
Name = "Monotype Corsiva"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 1095
Left = 1680
TabIndex = 1
Top = 2040
Width = 2055
End
Begin VB.TextBox Text1
BeginProperty Font
Name = "Monotype Corsiva"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 1215
Left = 1080
TabIndex = 0
Top = 600
Width = 2535
End
End
Attribute VB_Name = "ONLY_NOs_IN_THE_TEXT_BOX"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Const VBKeyDecpt = 46
Private Sub Text1_KeyPress(KeyAscii As Integer)
If (KeyAscii >= vbKey0 And KeyAscii <= vbKey9) Or KeyAscii = VBKeyDecpt Or KeyAscii = vbKeyBack Then
Exit Sub
Else
KeyAscii = 0
Beep
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -