📄 printshow.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "打印预览"
ClientHeight = 5220
ClientLeft = 60
ClientTop = 345
ClientWidth = 2775
Icon = "printShow.frx":0000
LinkTopic = "Form1"
ScaleHeight = 5220
ScaleWidth = 2775
StartUpPosition = 3 '窗口缺省
Begin VB.PictureBox Picture1
Appearance = 0 'Flat
BackColor = &H80000005&
ForeColor = &H80000008&
Height = 4605
Left = 120
ScaleHeight = 4575
ScaleWidth = 2535
TabIndex = 2
Top = 480
Width = 2565
Begin VB.TextBox Text1
Appearance = 0 'Flat
BorderStyle = 0 'None
Height = 4515
Left = 60
Locked = -1 'True
MultiLine = -1 'True
TabIndex = 3
Top = 30
Width = 2475
End
End
Begin VB.CommandButton Command2
Caption = "上一页[&P]"
Height = 345
Left = 90
TabIndex = 1
Top = 0
Width = 1065
End
Begin VB.CommandButton Command1
Caption = "下一页[&N]"
Height = 345
Left = 1590
TabIndex = 0
Top = 0
Width = 1065
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Text1.SelStart = Text1.SelStart + 896
End Sub
Private Sub Command2_Click()
If Text1.SelStart > 0 Then
Text1.SelStart = Text1.SelStart - 896
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -