HTML BUILDER
The HTML builder is meant to copy html tags to the clip board
Generating html code using vba is a pain!!!



Load Form
Private Sub Form_Load()
DoCmd.MoveSize 400, 400, 11000, 6000 'width, height
End Sub

PRE - preformat tag
Private Sub Command6_Click()
clpbrd.Value = <pre>
    Me.clpbrd.SetFocus
    DoCmd.RunCommand acCmdCopy
End Sub

Less Than sign <
Private Sub Command17_Click()
clpbrd.Value = "&lt"
    Me.clpbrd.SetFocus
    DoCmd.RunCommand acCmdCopy
End Sub

Greater Than sign >
Private Sub Command18_Click()
clpbrd.Value = "&gt"
    Me.clpbrd.SetFocus
    DoCmd.RunCommand acCmdCopy
End Sub

There's more but you get the idea!

Download HTML Builder 

https://gudbrandsen.com/ACCESS/html.zip