📄 webbrowser.bas
字号:
Attribute VB_Name = "modBrowser"
Public fMainForm As frmReader
Function resizeBrowser(theForm As Form)
If theForm.Width > 3000 And theForm.Height > 3000 Then
theForm.toolBar.Width = theForm.Width
theForm.picBox.Width = theForm.Width - 100
theForm.picBox.Height = theForm.Height - 2270
theForm.webBrowser.Width = theForm.picBox.Width
theForm.webBrowser.Height = theForm.picBox.Height
theForm.cmbURL.Width = theForm.Width - 1080
For Index = 0 To 5
theForm.browserLine(Index).X2 = theForm.Width
Next
End If
End Function
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -