📄 form10.frm
字号:
VERSION 5.00
Begin VB.Form Form4
Caption = "源码"
ClientHeight = 6375
ClientLeft = 60
ClientTop = 345
ClientWidth = 6870
Icon = "Form10.frx":0000
LinkTopic = "Form4"
ScaleHeight = 6375
ScaleWidth = 6870
StartUpPosition = 3 '窗口缺省
Begin VB.TextBox form4
Height = 6375
Left = 0
MaxLength = 4
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 0
Text = "Form10.frx":038A
Top = 0
Width = 6855
End
End
Attribute VB_Name = "Form4"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Dim X0 As Long
Dim Y0 As Long
Call GetAppPath
'让窗体居中
X0 = Screen.Width
Y0 = Screen.Height
X0 = (X0 - Me.Width) / 2
Y0 = (Y0 - Me.Height) / 2
Me.Move X0, Y0
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -