I have a problem with displaying modal dialog in center of the owner form. My code for showing modal dialog is:
procedure TfrmMain.btnOpenSettingsClick(Sender: TObject);
var
sdSettingsDialog: TdlgSettings;
begin
sdSettingsDialog := TdlgSettings.Create(Self);
sdSettingsDialog.Position := TFormPosition.poOwnerFormCenter;
try
sdSettingsDialog.ShowModal;
finally
sdSettingsDialog.Free;
end;
end;
Tried to change Position property in designer too, but it doesn't seems to center the dialog.
Can you tell me what's wrong here?