Eine Form hat kein OnMinimize-Ereignis, sondern nur das TApplication-Objekt. Aber probier mal das:
Delphi-Quellcode:
if command = '!text' then
begin
memo1.Lines.Add(copy(strcommand,6,length(strcommand)));
if IsIconic(Application.Handle) then
begin
PlaySound('message',0,SND_RESOURCE or SND_ASYNC);
end;
end;