According to their own documentation Application.ExeName should exist.
https://docwiki.embarcadero.com/CodeExamples/Alexandria/en/ExeName_(Delphi)
All the documentation I could find on the internet points to this, but in my IDE it doesn't exist!
According to their own documentation Application.ExeName should exist.
https://docwiki.embarcadero.com/CodeExamples/Alexandria/en/ExeName_(Delphi)
All the documentation I could find on the internet points to this, but in my IDE it doesn't exist!
Did you, by chance, create an FMX Multi-Device project?
Application.ExeName
exists only in a VCL project. For FMX (and VCL), you can useParamStr(0)
instead
Yes, this is a FMX Multi-Device project.