Version 3.1
Copyright 2000-2009 Diamond Edge, Inc.
We are constantly adding support for more of the features of the Visual Basic language and libraries. We are committed to having the highest quality and most accurate Access to Java conversion tool available on the market. Any features you would like supported or any problems you notice should be emailed to . Snippets of code would be greatly appreciated and expedite the process of improving the conversion process.
|
ADO Objects |
DAO Objects |
Sub doit()
...
On Error GoTo handle_error
...
Exit Sub
handle_error:
...
End Sub
With Text1
.Text = "hello" ' OK
Call MySub .Text ' not supported. Need to change to "MySub Text1.Text"
End With
Should be:
Sub Foo( text As Control )
Sub Foo( text As TextBox )