Hey Everybody,

I'm encountering an annoying problem with App.Path and App.EXEName. It seems that when in the development environment, these values are in the correct case, but when running from a compiled EXE, these values are suddenly all UPPER CASE. For instance, if my application is located here:

"C:\Stuff\WaCkY\Location"

In the development environment, App.Path returns:

"C:\Stuff\WaCkY\Location"

But after compiling an EXE and running that, App.Path now returns:

"C:\STUFF\WACKY\LOCATION"

Things still work (as long as you allow for the difference when doing comparisions), but for display purposes this is ugly and inaccurate. Does anyone know why this happens and/or how to make it work properly?

Thanks,
-JoeyCode