The code below creates the file "config.ini" with the values used by the User when the app is closed.
void Form1_FormClosing(object sender,FormClosingEventArgs e)
{
IniFile ini=new IniFile(Application.StartupPath+@"\\config.ini");
When running the app in Visual Studio 2010 Ultimate, the file config.ini will be saved in the app directory\bin\Debug.
By publish, install and run the app, I can not find the file config.ini.
What is the location of the file config.ini?
Thanks in advanced, ocaccy