iProgrammer
iProgrammer

Reputation: 107

How set element align half all form in Delphi 7?

Hello I create a form and put into the form two DBGrid. And set align Left to right of both. When i run the program and maximized window DBGrid width not changing. what i need to change width both of DBGrid to 50% of window?

Upvotes: 0

Views: 880

Answers (1)

Andreas Rejbrand
Andreas Rejbrand

Reputation: 108948

Set the left control (Control1, say) to alLeft and the right control (Control2, say) to alClient. Then create a OnResize handler on the parent form:

procedure TForm1.FormResize(Sender: TObject);
begin
  Control1.Width := ClientWidth div 2;
end;

Upvotes: 3

Related Questions