📄 html.frm
字号:
VERSION 5.00
Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "COMDLG32.OCX"
Object = "{38911DA0-E448-11D0-84A3-00DD01104159}#1.1#0"; "COMCT332.OCX"
Object = "{3B7C8863-D78F-101B-B9B5-04021C009402}#1.2#0"; "RICHTX32.OCX"
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form frmEditor
Caption = "XtremePad - HTML Editor"
ClientHeight = 6930
ClientLeft = 165
ClientTop = 735
ClientWidth = 6930
Icon = "Html.frx":0000
LinkTopic = "Form1"
ScaleHeight = 6930
ScaleWidth = 6930
StartUpPosition = 3 'Windows Default
WindowState = 2 'Maximized
Begin MSComctlLib.ImageList ImageList1
Left = 4800
Top = 1080
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 16
ImageHeight = 16
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 5
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Html.frx":030A
Key = ""
EndProperty
BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Html.frx":065E
Key = ""
EndProperty
BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Html.frx":0B32
Key = ""
EndProperty
BeginProperty ListImage4 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Html.frx":0E86
Key = ""
EndProperty
BeginProperty ListImage5 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Html.frx":11DA
Key = ""
EndProperty
EndProperty
End
Begin ComCtl3.CoolBar CoolBar1
Align = 1 'Align Top
Height = 390
Left = 0
TabIndex = 1
Top = 0
Width = 6930
_ExtentX = 12224
_ExtentY = 688
BandCount = 1
_CBWidth = 6930
_CBHeight = 390
_Version = "6.0.8169"
Child1 = "Toolbar1"
MinHeight1 = 330
Width1 = 75
NewRow1 = 0 'False
Begin MSComctlLib.Toolbar Toolbar1
Height = 330
Left = 30
TabIndex = 2
Top = 30
Width = 6810
_ExtentX = 12012
_ExtentY = 582
ButtonWidth = 609
ButtonHeight = 582
Style = 1
ImageList = "ImageList1"
_Version = 393216
BeginProperty Buttons {66833FE8-8583-11D1-B16A-00C0F0283628}
NumButtons = 7
BeginProperty Button1 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "New"
Object.ToolTipText = "New"
ImageIndex = 5
EndProperty
BeginProperty Button2 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "Open"
Object.ToolTipText = "Open"
ImageIndex = 3
EndProperty
BeginProperty Button3 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "Save"
Object.ToolTipText = "Save"
ImageIndex = 1
EndProperty
BeginProperty Button4 {66833FEA-8583-11D1-B16A-00C0F0283628}
Style = 3
EndProperty
BeginProperty Button5 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "Close"
Object.ToolTipText = "Exit"
ImageIndex = 4
EndProperty
BeginProperty Button6 {66833FEA-8583-11D1-B16A-00C0F0283628}
Style = 3
EndProperty
BeginProperty Button7 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "Preview"
Object.ToolTipText = "Preview"
ImageIndex = 2
EndProperty
EndProperty
End
End
Begin MSComDlg.CommonDialog CommonDialog1
Left = 5400
Top = 1080
_ExtentX = 847
_ExtentY = 847
_Version = 393216
End
Begin RichTextLib.RichTextBox RichTextBox1
Height = 6495
Left = 0
TabIndex = 0
Top = 360
Width = 6975
_ExtentX = 12303
_ExtentY = 11456
_Version = 393217
Enabled = -1 'True
TextRTF = $"Html.frx":152E
End
Begin VB.Menu file
Caption = "&File"
Begin VB.Menu mnunew
Caption = "New"
Shortcut = ^N
End
Begin VB.Menu open
Caption = "&Open"
Shortcut = ^O
End
Begin VB.Menu save
Caption = "&Save"
Shortcut = ^G
End
Begin VB.Menu line
Caption = "-"
End
Begin VB.Menu mnuprev
Caption = "&Preview"
Shortcut = {F5}
End
Begin VB.Menu menu
Caption = "-"
End
Begin VB.Menu exit
Caption = "&Exit"
End
End
Begin VB.Menu help
Caption = "&Help"
Begin VB.Menu about
Caption = "&About"
End
End
End
Attribute VB_Name = "frmEditor"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub about_Click()
Form4.Show vbModal
End Sub
Private Sub Command1_Click()
Unload Me
MDIForm1.Visible = True
End Sub
Private Sub Command2_Click()
End Sub
Private Sub Command3_Click()
CommonDialog1.Filter = "HTML Files (*.html)|*.html|HTM Files (*.htm)|*.htm)"
CommonDialog1.ShowSave
If CommonDialog1.filename <> "" Then
Open CommonDialog1.filename For Output As #1
Print #1, RichTextBox1.Text
Close #1
End If
End Sub
Private Sub Command4_Click()
End Sub
Private Sub exit_Click()
Unload Me
MDIForm1.Visible = True
End Sub
Private Sub Form_Load()
RichTextBox1.Text = "<HTML>" & vbCrLf & vbCrLf & "<HEAD>" & vbCrLf & "<TITLE>" & "Web Page</TITLE>" & vbCrLf & "</HEAD>" & vbCrLf & vbCrLf & "<BODY>" & vbCrLf & vbCrLf & "</BODY>" & vbCrLf & vbCrLf & "</HTML>" & vbCrLf & ""
End Sub
Private Sub Form_Resize()
If Me.WindowState = 1 Then Exit Sub
RichTextBox1.Width = Me.Width - 105
RichTextBox1.Height = Me.Height - 405
End Sub
Private Sub Form_Unload(Cancel As Integer)
Unload Me
MDIForm1.Visible = True
End Sub
Private Sub mnunew_Click()
RichTextBox1.Text = "<HTML>" & vbCrLf & vbCrLf & "<HEAD>" & vbCrLf & "<TITLE>" & "Web Page</TITLE>" & vbCrLf & "</HEAD>" & vbCrLf & vbCrLf & "<BODY>" & vbCrLf & vbCrLf & "</BODY>" & vbCrLf & vbCrLf & "</HTML>" & vbCrLf & ""
End Sub
Private Sub mnuprev_Click()
Open App.Path & "\preview.html" For Output As #1
Print #1, RichTextBox1.Text
Close #1
Load Browser
Browser.Show
Browser.Web.Navigate App.Path & "\preview.html"
End Sub
Private Sub open_Click()
CommonDialog1.Filter = "HTML Files (*.html)|*.html|HTM Files (*.htm)|*.htm)"
CommonDialog1.ShowOpen
If CommonDialog1.filename <> "" Then
Open CommonDialog1.filename For Input As #1
Do Until EOF(1)
Line Input #1, lineoftext$
alltext$ = alltext$ & lineoftext$
RichTextBox1.Text = alltext$
Loop
Close #1
End If
End Sub
Private Sub save_Click()
CommonDialog1.Filter = "HTML Files (*.html)|*.html|HTM Files (*.htm)|*.htm)"
CommonDialog1.ShowSave
If CommonDialog1.filename <> "" Then
Open CommonDialog1.filename For Output As #1
Print #1, RichTextBox1.Text
Close #1
End If
End Sub
Private Sub Toolbar1_ButtonClick(ByVal Button As MSComctlLib.Button)
Select Case Button.Key
Case "New"
mnunew_Click
Case "Open"
open_Click
Case "Save"
save_Click
Case "Close"
exit_Click
Case "Preview"
mnuprev_Click
End Select
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -