(11-16-2022, 05:13 AM)bplus Wrote:(11-16-2022, 03:41 AM)NasaCow Wrote: Can meta commands such as option base 0 or 1 or option _explicit be set to only affect the main program and not the included libraries? If not, be a cool addition to the IDE instead of being forced to be using the defaults.
I would say no. Steve has already lamented how Option _Explicit even effects code in libraries back at old forum.
What defaults are you being forced to use?
Default usually means something will be used if you haven't declared a preference.
Option base 1 or 0 are old compatibility Options, you can start and stop an array anywhere eg, Dim arr(-100 to 100)
I guess I am the odd one that really likes to use $NOPREFIX command and I also really, really like OPTION _EXPLICIT. I know it is just preference and working around it, just miss it for this program I am writing
Good point on array defining, I shouldn't be lazy to use the style I want!