VisualBasic Parser

Description

The VisualBasic parser allows you to have VB code rendered nicely inside Moin's code blocks.

Download & Release Notes

Download

Release Version

Moin Version

Release Notes

visualbasic.py

1.0

1.5

ParserMarket/VisualBasic/ReleaseNotes

Installation

For general installation instructions, see ParserMarket/InstallingParsers. This parser requires no special dependencies, such as outside Python libraries.

Usage

To use this parser, simply put #!visualbasic after the beginning of the code block.

Example

{{{#!visualbasic
Private Sub cmdClear_Click()
    txtHello.Text = ""
End Sub
 
Private Sub cmdExit_Click()
    End
End Sub
 
Private Sub cmdHello_Click()
    txtHello.Text = "Hello World!"
    With txtHello
        .Font = "Arial"
        .FontSize = 16
        .ForeColor = vbBlue
    End With
End Sub
}}}

Unknown.

License

This parser is released under the terms of the GNU GPL.

Discussion

MoinMoin: ParserMarket/VisualBasic (last edited 2008-01-28 18:48:21 by FedericoLorenzi)