Exit For, Exit Do, Exit <ID>, Exit Sub, Exit Function
End
Let, Set
Dim, Public, Private, Const, Static
Property Get, Let, Set
Type ... End Type
Enum ... End Enum
Debug.Print
GoTo
Resume
Notes on With block: If you get an error reported for a line with the '.' (with) operator, it probably means that
the with operator was ambiguous in this context. You should try explicitely declaring the entire expression.
Notes: The error handler for an "On Error Goto
Extensions
The following are extensions that can be used in the VB code that will not work in VB but will be converted
to Java to work as they are documented.
Hyperlinks - put the following in the VB code to make the browser navigate from the applet to a new
page or from an application show the URL in a simple browser window:
ShowURL "http://www.diamondedge.com"
Playing a sound file - put the following in the VB code to make the browser play a sound file:
PlaySound "http://www.diamondedge.com/intro.au"
Setting the command line arguments in an applet - put the following in the html code to pass in arguments
to your code. It will available from the App.Command property in VB just as you normally access the command-line
arguments:
<PARAM NAME=cmd VALUE="your command arguments">
You will notice that a blank line similar to the above has been automatically generated when the application
was converted to Java and placed in the proper place.