Get a list of document worksheets
Posted: Mon Sep 28, 2020 1:26 pm
Good morning, how can I get the list of document's worksheets to show in a ListView?
Can you help me, please?
Can you help me, please?
Code: Select all
var
i: integer;
S: string;
begin
for i := 0 to XLS.Count - 1 do
S := XLS[i].Name;
end;