uses ShellAPI;
{$IFNDEF Win32}//Var上面end;下面
function ShellAbout(Wnd: HWnd; App, Stuff: PChar; Icon: HIcon): Integer; far; external 'shell';
{$ENDIF}
procedure TForm1.Button1Click(Sender: TObject);
begin
ShellAbout(Application.MainForm.Handle,
'此处写您的软件名称',
'Copyright (c) 2001-2002'#13'http://www.您的网站.com',
Application.Icon.Handle);
end;
开始于:2011年11月6日 17:33:37
//图标显示 就是当前这个程序编译后所显示的图标
![](https://images.cnblogs.com/cnblogs_com/xe2011/201206/201206031755065183.png)
![](https://images.cnblogs.com/cnblogs_com/xe2011/201206/201206031755083033.png)