Ich sehe den Parameter Handled, der muss sicher gesetzt werden:
Delphi-Quellcode:
procedure TForm1.TcpClientProxyAuthorization(Sender: TObject;
Authentication: TIdAuthentication; var Handled: Boolean);
begin
Authentication.Username:=InputBox('User','','');
Authentication.Password:=InputBox('Passw','','');
Handled := True;
end;