Hi Oleg
When I stop a download via OLE, the method is executed and everything seems to be OK. If then I call the method GetStatus(), the method does not return back and the OEE-Instance is not responding.
Can You please check it? It is urgent.
Thank You and best regards
Jo A. Kim
Additional=DeleteProjectSettings
Oleg.
>
No I dont! But I remove the Project before downloading to delete the Mapentries list! Is this not possible?
Jo A. Kim
>
> Additional=DeleteProjectSettings
>
Oleg,
I found the reason:
Additional=FinalizeAllFilesOnStop.
But this command is necessary!
How to work it around?
Jo A. Kim
http://news.bbc.co.uk/media/avdb/sport/motorsport/audio/104000/nb/104931_au_nb.ram
Additional=FinalizeAllFilesOnStop
I started it via OLE and then executed the sequence of commands:
V := OE.GetProjectByIID(Integer(Tree.Selected.Data));
if not VarIsEmpty(V) then
begin
V.Stop;
I := V.GetStatus;
StatusBar1.SimpleText := IntToStr(I);
end;
Offline Explorer didn't hang. What could be different in our cases?
Oleg.
>
> http://news.bbc.co.uk/media/avdb/sport/motorsport/audio/104000/nb/104931_au_nb.ram
> Additional=FinalizeAllFilesOnStop
>
> I started it via OLE and then executed the sequence of commands:
How many time delays between start and stop? You only load 2 files. Are You sure that the downloading was still processsing?
If the download ist not interrupted manualy or with a timeout ("Stop loading if download time exceeds ...") everything is ok even with the command 'Additional=FinalizeAllFilesOnStop'!
>
> V := OE.GetProjectByIID(Integer(Tree.Selected.Data));
> if not VarIsEmpty(V) then
> begin
> V.Stop;
> I := V.GetStatus;
> StatusBar1.SimpleText := IntToStr(I);
> end;
>
> Offline Explorer didn't hang. What could be different in our cases?
>
> Oleg.
Oleg.