Hello,
I want to start using the VBA compiler for my projects.
I have a few projects that I didn’t distribute yet and they are 100% pure VBA code.
I’m toking about something like 10K line of code, lots of modules , lots of public/private sub’s and function’s, lots of type’s, Enum’s, Const’s, very strong and tight code.
A few minutes ago I finished a few hours of test’s and learning your VBA compiler and I have a few questions that I didn’t figure:
I want to start using the VBA compiler for my projects.
I have a few projects that I didn’t distribute yet and they are 100% pure VBA code.
I’m toking about something like 10K line of code, lots of modules , lots of public/private sub’s and function’s, lots of type’s, Enum’s, Const’s, very strong and tight code.
A few minutes ago I finished a few hours of test’s and learning your VBA compiler and I have a few questions that I didn’t figure:
- Is the compiler supports WITH statements? it seems that is not and I recommend to add a support if possible, so it will more easy to set (for example) "With Application." In the compiler editor.
- How can I call another function/sub in the VBA editor inside a function that I want to compile? when I set the key word "Call" in the VBA editor, I get a red line ?
- I see that I declare a variable in a function that I want to compile BUT Is there a meaning to this declaration ? or all becomes variant ?
- I have functions with 4,5,6,7 "parameters", can you create more than "PLEvalVBA2" and "PLEvalVBA3" ? I know and understand that can use an array to pass dose parameters but it will add more updating syntax to switch to the VBA compiler
- Is "goto" supported ?

