Use AProcess.Input.Write() method. I don't really know how a key combination is handled, but I guess it's worth to try:
var
s: String;
begin
s:=Chr(VK_SHIFT)+Chr(VK_CTRL)+'Q';
AProcess.Input.Write(s[1],Length(s));
end;
Call it after execute. Precisely, after the program blocks for input.