|
-
Feb 14th, 2005, 05:00 AM
#1
Thread Starter
Fanatic Member
problem with install shield
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
Last edited by vivek.shankar; Feb 14th, 2005 at 05:50 AM.
-
Feb 18th, 2005, 10:37 AM
#2
Re: problem with install shield
Make a new install package containing just those Dlls and hard code the path (so the user can't change where they get installed.)
-
Mar 8th, 2005, 10:44 PM
#3
New Member
Re: problem with install shield
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);
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|