From: Roberto on
Hi,

I want to read a bunch of xls-files in excel. The names of the files are:
00000.xls
00001.xls
00002.xls
00003.xls
etc etc.

I tried the following code, but that doesn't work, because 'n' becomes 0 (and not 00000)...
n=00000;
for n=1:11399;
winopen([n, '.xls']);
%this part doesn't matter
n=n+1;
end

Anyone an idea?
Tnx!