J
John Gunther
I need to know all of the characters than can be part of a valid VBA
variable name.
Dim çà as Integer
This VBA line compiles fine, so ç and à are acceptable.
abcdefghijklmnopqrstuvwxyz are clearly OK too. 0123456789 and _ are OK
as long as they don't come first.
But what I need is a complete list. Does anyone have it, or know where
I can get it?
Why do I need this? See http://invisiblebasic.sourceforge.net/, an open
source Excel/VBA source obfuscation utility--I need a list of such
characters so I can properly recognize variable names regardless of if
the VBA code is created by French or English or ... speaking VBA
coders.
I searched around but could not find this list anywhere...please help.
John
variable name.
Dim çà as Integer
This VBA line compiles fine, so ç and à are acceptable.
abcdefghijklmnopqrstuvwxyz are clearly OK too. 0123456789 and _ are OK
as long as they don't come first.
But what I need is a complete list. Does anyone have it, or know where
I can get it?
Why do I need this? See http://invisiblebasic.sourceforge.net/, an open
source Excel/VBA source obfuscation utility--I need a list of such
characters so I can properly recognize variable names regardless of if
the VBA code is created by French or English or ... speaking VBA
coders.
I searched around but could not find this list anywhere...please help.
John