views:

166

answers:

3
A: 

Should be in the same directory as binaries, but you have to add it to your solution first, using Visual Studio window for adding new files to soultion.

Add -> New Item -> Application configuration file
smok1
+3  A: 

Im pretty sure you can use web.config if youre in a web app or web solution.

Otherwise, see here

[EDIT] In my VS the app file can be added like: Add new item -> General -> Application Configuration file

cwap
A: 

You can add an app config file to any vb project by

right clicking on the project -> Add-> New Item -> ...

and selecting either

Application Configuration File

or selecting

Web Configuration File

(for app.config or web.config respectively)

Joseph