Can I know if the IDE is open when I run an non-ui application from the ide in release ?
I need to know because it changes the way I do logging ... I mean while the ide is open and I run the application from the ide I can see the logs in the Logs window of the ide and I do not need to log some data, but when the application is started without the ide I redirect output to a file and now I need to log more data...
Use #CommandLineArgs in the Project Attributes Region to set an arg. Then test for the presence of that arg in your first line of AppStart. That arg won't be present unless you run your app from the IDE.