这段程序不能执行,
var 
a:string;
begin
    a:='00001';
 winexec('C:\Program Files\Internet Explorer\IEXPLORE.EXE '+'http://localhost:8080/addressbook/'+ a +'.htm',SW_SHOW);
end;
报错为
[Error] Unit1.pas(40): Incompatible types: 'String' and 'Integer'
但是
winexec('C:\Program Files\Internet Explorer\IEXPLORE.EXE '+'http://localhost:8080/addressbook/'+ '00001' +'.htm',SW_SHOW);
可以执行
难道winexec参数不能加变量??