Hi All,
I am working in Installshield for VC++ 6.0
version 5.10, I have problem in displaying billboards, my file names are
bbrd1.bmp and so on and are present in Languages Indepen.->OS Indepen. folder
of the IDE. everything is fine and almost I have read all faq's from IS5 and IS6
newsgroups relating billboards. But in my case the billboards are not being
displayed code snippet of setup.rul file is ::
// MAIN
PROGRAM
// global
variables
program
CheckRequirements();
SetupInstall();
SetupScreen();
if (ShowDialogs()<0) goto
end_install;
if (ProcessBeforeDataMove()<0) goto
end_install;
if (MoveFileData()<0) goto
end_install;
if (ProcessAfterDataMove()<0) goto
end_install;
if (SetupRegistry()<0) goto
end_install;
if (SetupFolders()<0) goto
end_install;
end_install:
......
endprogram
// Function: MoveFileData
// This
is the function doing actual file-transfer of the setup
function MoveFileData()
begin
nDisk = 1;
SetStatusWindow(0,"");
Disable(
DIALOGCACHE );
Enable( STATUS );
Enable( STATUSDLG
);
Enable( INDVFILESTATUS );
StatusUpdate( ON,
100);
Enable( FULLWINDOWMODE );
Enable( BACKGROUND );
SetColor(BACKGROUND,RGB (0, 128,
128));
PlaceWindow (STATUSEX, 10, 10,
LOWER_RIGHT);
PlaceWindow (BILLBOARD, 10, 10,
UPPER_LEFT);
nResult = ComponentMoveData( MEDIA,
nDisk, 0 );
HandleMoveDataError( nResult );
Disable( STATUS
);
return nResult;
end;
But billboards are not being
displayed.
What's the problem, I am really got frustrated, what to do
.... .......
Please help me as soon as possible
Best Regards