- Local time
- Today, 15:16
- Joined
- Jul 9, 2003
- Messages
- 17,347
I want to post code on my website.
I would like it to be formated the same on the web page as it is in the MS Access code module.
For Example:
Is there a free online HTML code editor that will do this?
I would like it to be formated the same on the web page as it is in the MS Access code module.
For Example:
Code:
Private Sub Form_Open(Cancel As Integer)
' Minimize the database window and initialize the form.
' Move to the switchboard page that is marked as the default.
Me.Filter = "[ItemNumber] = 0 AND [Argument] = 'Default' "
Me.FilterOn = True
End Sub 'Form_Open
Private Sub Form_Current()
' Update the caption and fill in the list of options.
Me.Caption = Nz(Me![ItemText], "")
Me.lblPageTitle.Caption = Nz(Me![ItemText], "")
FillOptions
End Sub 'Form_Current
Is there a free online HTML code editor that will do this?