In my Delphi Project i want to have a \'Settings\' button that when clicked, opens a second form (i think this is the correct term, i essentially want a new window to open)
I would create a Settings Objects in form1 and send it to form 2:
TSettings = class private FPropA: integer; FPropB: string; published property PropA: integer read FPropA write FPropA: property PropB: string read FPropB write FPropB: end; ... form2.EditSettings(ASettings);