Resource files in silent deployment scenarios

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
We are using silent or no-tocuh deployment to deploy our application. Can silent deployment be given the capability of using resource files like reports or image files and load them at run time
We can one .exe file and about 10 dlls that are called by .exe file when required. If it is possible to use resource files where can we put the resource files so that they can be used accross applications
Any thoughts or suggestions will greatly appreciated..
Thank
Rupa
 
http://msdn.microsoft.com/msdnmag/issues/02/07/NetSmartClients/

Resources are covered about 25% down the page.
If you don't tie into the codebase path of the application, you'll need to
do some relative pathing and manually load the resources from the resulting
URL.
Depending on the type of resources, you might just have to copy them to the
appropriate app directories on the server.

-Rob Teixeira [MVP]

rupa said:
Hi,
We are using silent or no-tocuh deployment to deploy our application. Can
silent deployment be given the capability of using resource files like
reports or image files and load them at run time?
We can one .exe file and about 10 dlls that are called by .exe file when
required. If it is possible to use resource files where can we put the
resource files so that they can be used accross applications?
 
Back
Top