Good morning, how can I get the list of document's worksheets to show in a ListView?
Can you help me, please?
Get a list of document worksheets
Re: Get a list of document worksheets
Hello
Use code like this:
Use code like this:
Code: Select all
var
i: integer;
S: string;
begin
for i := 0 to XLS.Count - 1 do
S := XLS[i].Name;
end;
Lars Arvidsson, Axolot Data