In VBA and VB you can call a sub in two ways:
either
or just
In B4A you use
(With functions the syntax is identical between VBA/VB and B4A ie result=myFunction(a,b,c).)
When you are trying to convert some code from VBA/VB to B4A you can't do a straight edit to convert the subs and you need to add in the brackets.
I've no idea if it would be a big deal to allow the alternative syntax but it would be a very convenient if you could use things like
instead of
There's probably a really good reason for the way things are connected with parsing the code but the alternative syntax would be very useful.
Derek