Kannst Du nicht auf das
Handle des Dialogs zugreifen und bestätigen?
Hatte da mal irgendwas für ein anderes Programm mit "enum & FindWindow" gemacht.
EDIT: Schau mal hier
http://www.swissdelphicenter.ch/de/showcode.php?id=327
Delphi-Quellcode:
{
Example how to search for a window that contains the
word "notepad" and maximize it.
Beispiel, wie man ein Fenster "notepad" findet
und es anschliessend maximiert.
}
procedure TForm1.Button1Click(Sender: TObject);
var
h: hwnd;
begin
h := FindWindowByTitle('notepad');
if h <> 0 then // if we found notepad
ShowWindow(h, SW_MAXIMIZE)
else
ShowMessage('not found.');
end;