I have IS 6.11, is that function somewhere in there?
Or is it just in newer versions?
Is it possible to just insert that function in IS 6.11 without upgrading to
6.22?
If yes can somebody give me this function?
How should i implement this function then?
Now i do it like this:
function OnRemovingSharedFile()
string szFilename;
begin
szFilename = "Vb6stkit.dll";
return SdExceptions(SHARED, szFilename);
return ERR_NO;
szFilename = "hhctrl.ocx";
return SdExceptions(SHARED, szFilename);
return ERR_NO;
szFilename = "Richtx32.ocx";
return SdExceptions(SHARED, szFilename);
return ERR_NO;
szFilename = "Comdlg32.ocx";
return SdExceptions(SHARED, szFilename);
return ERR_NO;
szFilename = "Grid32.ocx";
return SdExceptions(SHARED, szFilename);
return ERR_NO;
szFilename = "Comct332.ocx";
return SdExceptions(SHARED, szFilename);
return ERR_NO;
szFilename = "Mshflxgd.ocx";
return SdExceptions(SHARED, szFilename);
return ERR_NO;
szFilename = "Mscomct2.ocx";
return SdExceptions(SHARED, szFilename);
return ERR_NO;
szFilename = "Picclp32.ocx";
return SdExceptions(SHARED, szFilename);
return ERR_NO;
end;
and he gives me the following error and i think it is because this function
is not recougnized by my version of installshield:
Setup.Rul (2345): error C8121 : ')' : incomplete parameter list
please give me a solution
just poste in the newsgroup or mail me at debus...@hotmail.com
thx