procedure TForm1.Button1Click(Sender: TObject);
var
ret :array [0..255] of char;
i :integer;
begin
i :=FindExecutable('c:/windows/readme.htm',nil,ret);
if i<=32 then //偷懒了!!
label1.caption := 'There is no association for the specified file type.'
else
label1.caption := 'associated file: '+ret;
//pegasus
i:=ShellExecute(handle,'open','c:/pdos.def',nil,nil,sw_show);
if i<=32 then
label1.caption := 'There is no association for the specified file type.'
else
label1.caption := inttostr(i);
end;