I would like to have your opinions regarding variable names that don't need to be defined to be used.
On small projects it is fine but when you start building bigger projects it might be a problem. Let's say you have a variable named (ThisVar$) and that later on in the program you use it but mispell it (ThsVar$). It would probably take a long time to figure out where the problem is.
I would like to know if I shouldn't allow variables to be used unless being defined within a LOCAL, GLOBAL, PRIVATE or PUBLIC statement.