Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

error occurred during the move data process :- 145


1 reply to this topic

neyjai

neyjai
  • Members
  • 2 posts

Posted 26 May 2005 - 07:43

Hi
Problem is very simple I had used askpath function and choose a directory which will be in script variable svResultPath, Then I have used file groups that has two asp files and component is mapped to destination of Script defined folders that is created by me svResultpath. When i try to run the setup i am getting "error occurred during the move data process :- 145"
Component: Help files
Filegroup : HelpFiles
File:

Help needed?.

sPath="C:\\";
nResult = AskPath (szTitle, sPath, svResultPath);
if (nResult = NEXT) then
if (ExistsDir (svResultPath) = 0) then
bTargetDirOk = TRUE;
else
if (AskYesNo ("Folder does not exist. Create it?",YES) = YES) then
if (CreateDir (svResultPath) = 0) then
bTargetDirOk = TRUE;
endif;
endif;
endif;
else
sPath="";
svResultPath="";
goto Dlg_SdAskDestPath;
endif;

when i try run the set up i am getting " error occurred during the move data process :- 145"


Regards
Jai

shuttledude

shuttledude
  • Full Members
  • 26 posts

Posted 26 May 2005 - 17:51

After you have defined svResultPath, are you using ComponentSetTarget? This is the function that actually SETS the path for the component.

For example:

ComponentSetTarget(MEDIA, "<svResultPath>", svResultPath);