Application.StartupPath.ToString();
-
Does anyone know if this value is where your executable will be installed from an install package. I need to be able to reference a database that will be packaged with the setup and want to make sure the connection string points to the proper location. Right now I am testing in Debug mode and so of course the value that
Application.StartupPath.ToString();
returns in inside the Debug subfolder. Does this change with a release version build? Nick Parker
**The goal of Computer Science is to build something that will last at least until we've finished building it. - Unknown
**
-
Does anyone know if this value is where your executable will be installed from an install package. I need to be able to reference a database that will be packaged with the setup and want to make sure the connection string points to the proper location. Right now I am testing in Debug mode and so of course the value that
Application.StartupPath.ToString();
returns in inside the Debug subfolder. Does this change with a release version build? Nick Parker
**The goal of Computer Science is to build something that will last at least until we've finished building it. - Unknown
**
Yes it will ... - James