Hi,
I would explain problem in brief.
well i have got a directory where i have 10 dlls.I ahve to copy another 5 new dll's into the same directory using INSTALL SHIELD.
how can i do it?
Thanks and Regards
vivek.s
Printable View
Hi,
I would explain problem in brief.
well i have got a directory where i have 10 dlls.I ahve to copy another 5 new dll's into the same directory using INSTALL SHIELD.
how can i do it?
Thanks and Regards
vivek.s
Make a new install package containing just those Dlls and hard code the path (so the user can't change where they get installed.)
Ok,
//suppose source dir is SOURCEDIR\images
//target dir is application path\images
//declare
STRING SOURCEDIR;
SOURCEDIR = SRCDIR;
SOURCEDIR = SOURCEDIR ^ "\\Images\\*.*";
TDIR = szAppPath;
TDIR = TDIR ^ "\\Images\\";
XCopyFile(SOURCEDIR , TDIR , INCLUDE_SUBDIR);