📄 frmselectnone.frm
字号:
VERSION 5.00
Begin VB.Form frmSelectnone
BackColor = &H00C0C000&
BorderStyle = 3 'Fixed Dialog
Caption = "提示信息窗口"
ClientHeight = 1770
ClientLeft = 45
ClientTop = 330
ClientWidth = 3405
Icon = "frmSelectnone.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1770
ScaleWidth = 3405
ShowInTaskbar = 0 'False
StartUpPosition = 3 '窗口缺省
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "没有记录。"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 210
Left = 120
TabIndex = 0
Top = 600
Width = 1050
End
Begin VB.Shape Shape1
BackColor = &H80000018&
BackStyle = 1 'Opaque
BorderColor = &H0080FFFF&
BorderWidth = 2
Height = 1695
Left = 60
Top = 60
Width = 3285
End
End
Attribute VB_Name = "frmSelectnone"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Resize()
Shape1.Left = 60
Shape1.Top = 60
If Me.ScaleWidth <= 3495 Then
Me.Width = 3495
End If
If Me.ScaleHeight <= 2145 Then
Me.Height = 2145
End If
Shape1.Width = Me.ScaleWidth - 110
Shape1.Height = Me.ScaleHeight - 110
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -