i can't seem to take a screenshot of any other window than the focused Form1.
At keypress, i can take a screenshot of Form1 window because it has focus. When it doesn't, nothing happens.
Tried to set KeyPreview to true on Form1 Properties, same happens.
Tried to set it true at FormCreate :
procedure TForm1.FormCreate(Sender: TObject);
begin
Form1.KeyPreview := true;
end;
Still, I cant take a screenshot of third-party applications :(
Any help?