Get access to over 100 FireMonkey cross platform samples for Android, IOS, OSX, Windows, and Linux!

AndroidAppmethodDelphiFiremonkeyIOSOSXWindows

Set The Application Title In Delphi XE5 Firemonkey On IOS Android Windows And OSX

| Delphi 11 10 XE8 XE7 XE Seattle Berlin Tokyo Rio Firemonkey Delphi Android Delphi IOS

Set Application Title Delphi Firemonkey | Delphi 11 10 XE8 XE7 XE Seattle Berlin Tokyo Rio Firemonkey Delphi Android Delphi IOSThe application title can be changed from the IDE’s main menu under ProjectOptionsVersion Info. For Windows, this is “InternalName” property. For OSX and IOS, the CFBundleDisplayName property, and for Android, you will need to change the Label property (Note: you can also change the label property in the template manifest). Apparently there is a work around to make it work on the Windows platform:
procedure TForm1.FormCreate(Sender: TObject);
var
app: HWND;
begin
//Application.Title := 'New Application Title';
app := GetWindow(WindowHandleToPlatform(Self.Handle).Wnd, GW_OWNER);
SetWindowText(app, 'New Application Title');
end;

Check out the thread on the official forums about it.

Have Delphi Firemonkey questions? Ask and get answers on StackOverflow.

Related posts
DelphiDemoFiremonkeyLinuxOSXShowcaseWindows

AutoBlogAI: FireMonkey Client To Leverage LLMs And Generative AI For Blogging

DelphiFiremonkeyShowcaseUtilityWindows

Unleashing Creativity With Song Writer AI: A Deep Dive

DelphiFiremonkeyShowcaseWindows

How To Build Stable Diffusion Text To Image Prompts

AndroidC++BuilderDelphiFiremonkeyIOSOSXWindows

FireMonkey 10.4.2 Features Updated iOS 14, Android 11, And macOS 11 Support Plus Hundreds Of Fixes

Sign up for our Newsletter and
stay informed

Leave a Reply