Topic: Checkbox

Is is possible that a particular form is opened when I check a checkbox?

Re: Checkbox

kees.krause wrote:

Is is possible that a particular form is opened when I check a checkbox?

yes

procedure Form1_CheckBox1_OnClick (Sender: TObject);
begin
  if Form1.CheckBox1.Checked=true then form2.Show;
end;

Re: Checkbox

Thans for your quick respons