Re: properties/configuration file with an assembly
[Originally posted by fgrimes] Zameer, When you use the DLL in an app, you need to place the necessary settings in the app.exe.config. For example, in the Bank class in poker.dll, you'll see the code: connectString = ConfigurationSettings.AppSettings["dsn"]; When this DLL is used by WinPok (and ConPok) the setting is stored in the appSettings section of WinPok.exe.config (and ConPok.exe.config). Fergal
|