delphidabbler / delphi-tips

A bunch of Delphi language tips migrated from the DelphiDabbler.com website, plus others.
https://tips.delphidabbler.com
31 stars 11 forks source link

New tip: Display main menu dialogue style main form #84

Open delphidabbler opened 1 year ago

delphidabbler commented 1 year ago

Possible new tip from extra/Topelina Tips.odt


MainFormAsDialog

Show the mainform as a dialog with a mainmenu.

If you want to show your mainform as a dialog (setting BorderStyle := bsDialog) and don't want to miss your main menu...

procedure TMain.FormCreate(Sender: TObject);
begin
  //...
  Windows.SetMenu(Handle, MainMenu1.Handle);
end;

Contributed by: topellina riccardo.faiella@alice.it