form1.frm
来自「text disabled」· FRM 代码 · 共 67 行
FRM
67 行
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 1440
ClientLeft = 3405
ClientTop = 2520
ClientWidth = 3300
LinkTopic = "Form1"
ScaleHeight = 1440
ScaleWidth = 3300
Begin VB.TextBox Text2
Height = 285
Left = 960
TabIndex = 3
Text = "Text2"
Top = 600
Width = 1935
End
Begin VB.TextBox Text1
Height = 285
Left = 960
TabIndex = 0
Text = "Text1"
Top = 240
Width = 1935
End
Begin VB.Label Label1
Caption = "Has menu"
Height = 255
Index = 1
Left = 120
TabIndex = 2
Top = 600
Width = 855
End
Begin VB.Label Label1
Caption = "No menu"
Height = 255
Index = 0
Left = 120
TabIndex = 1
Top = 240
Width = 855
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Load()
OldWindowProc = SetWindowLong( _
Text1.hWnd, GWL_WNDPROC, _
AddressOf NewWindowProc)
End Sub
Private Sub Text1_Change()
End Sub
Private Sub Text2_Change()
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?