Musste zwar noch ein bissl rumbasteln, doch jetzt funktionierts!!!!
Danke dir vielmals, Sebastian.
So, und damit sich die Nachwelt auch noch dran erfreuen kann:
Delphi-Quellcode:
program Project1;
uses
Forms,
tntstdctrls,
Unit1 in 'Unit1.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
with TtntLabel.Create(Form1) do
begin
Parent := Form1;
Left := 10;
Top := 50;
Width := 100;
Top := 40;
Caption := 'ı ğ ç - ganz nach Belieben :)';
end;
Application.Run;
end.