I have created a form (using Word as a shell) that applies logic rules and outputs a series of text strings in a field of the same form. I no longer use the Word functionality in any fashion other than as a shell for VBA (i.e. a way to launch and run the VBA form.
Is there any compilers/applications that will convert VBA to another language such as VB or Java or any common language that I can run stand alone
I found one for Excel, but not Word. I am hoping someone has a suggestion.
John

VBA to VB/Java
Leo Liu
I don't know of such a utility, but in general VBA code can usually be moved to VB.NET without much trouble. Since you say you're not using any Word functionality, you don't even have any interop issues to worry about. Have you tried just moving the code into VB and manually "fixing" any problems
Hugocpp
I haven't done that, but from the articles I looked at, it appeared the code would be different. The properties all seemed to be different. And drop down lists also seemed to be handled differently. It's been a few months since I looked at it. Is it easier than I think
Thanks for the advice!