i wanted to parse the .mpx project file with GetQueueEntry to see the downloaded files, but instead of the name it gives me only empty null strings back, so i took a look at the mpx file in hex editor and indeed there are lots of 0 bytes in it..i assume u used a special format to save project, or maybe there is some other problem?
Thx for answering!
procedure TForm1.btnMapClick(Sender: TObject);
var
I: Integer;
J: Integer;
V: Variant;
begin
MapList.Items.Clear;
V := OE.GetProjectByIID(Integer(Tree.Selected.Data));
if not VarIsEmpty(V) then
begin
I := V.MapEntriesCount;
if I > 0 then
For J := 0 to I - 1 do
MapList.Items.Add(V.GetMapEntry(J));
end;
end;
Best regards,
Oleg Chernavin
MP Staff
Thx for your kind help!
Oleg.
But it was already late and i was sleepy , hehehe :)
Oleg.