📄 frmtip.frm
字号:
VERSION 5.00
Begin VB.Form frmtip
BorderStyle = 3 'Fixed Dialog
Caption = "提示,谢谢使用!"
ClientHeight = 4110
ClientLeft = 45
ClientTop = 435
ClientWidth = 6375
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4110
ScaleWidth = 6375
ShowInTaskbar = 0 'False
StartUpPosition = 3 '窗口缺省
Begin VB.TextBox Text
Height = 3375
Left = 120
Locked = -1 'True
MultiLine = -1 'True
TabIndex = 1
Top = 120
Width = 5055
End
Begin VB.CommandButton Command1
Caption = "确定"
Default = -1 'True
Height = 375
Left = 5160
TabIndex = 0
Top = 3600
Width = 1095
End
Begin VB.Label Label2
BackColor = &H00FF0000&
Caption = "提示,谢谢使用!"
BeginProperty Font
Name = "方正姚体"
Size = 15.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H8000000E&
Height = 3135
Left = 5280
TabIndex = 3
Top = 240
Width = 375
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "SISE G624 (2006)"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 1800
TabIndex = 2
Top = 3720
Width = 1920
End
Begin VB.Image Image1
Height = 3375
Left = 5160
Picture = "frmTip.frx":0000
Stretch = -1 'True
Top = 120
Width = 1215
End
End
Attribute VB_Name = "frmtip"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Unload Me
End Sub
Private Sub Form_Load()
Dim st As String
Me.Move (Screen.Width - Me.Width) / 2, (Screen.Height - Me.Height) / 2
Open App.Path & "\" & "提示.txt" For Input As #1 ' 打开文件
Do While Not EOF(1) ' 读入文件,并将其显示在文本框中
Line Input #1, st
Text.Text = Text.Text + st + vbCrLf
Loop
Close #1
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -