Format REALbasic project for printing
Please use Arbed to do this as it supports more features.
This website can format you a REALbasic project file. Simply export your project to an xml file and choose it in the form below. Our script will do the same as we do with our example projects and outputs a simple html page you can use for printing or publishing.
An example how it looks like:
BackupMonitor.xml
Class App
Inherits Application
// Constants
Const kFileQuitShortcut = Ctrl+Q
Const kFileQuit = E&xit
Const kEditClear = &Delete
// Event implementations
Sub Open()
dim i as integer
if System.Gestalt("sysv",i) then
// System.DebugLog "sysv "+hex(i)
if i<&h1050 then
MsgBox "Warning: This application works only with Mac OS X 10.5."
quit
end if
end if
End Sub
End Class
