2
votes

I use this:

Application.Minimize;

in Vcl delphi application, but in Firemonkey I've got Undeclared identifire error.

How can I minimize my firemonkey form?

1
Which version of FMX?David Heffernan
Sorry I'm new to delphi, I use Rad Studio XE3 and Firemonkey Desktop application in defaultsma6871

1 Answers

6
votes

Try using the WindowState property like so

WindowState := TWindowState.wsMinimized;