Zitat von
herrentor:
wie wäre denn das umgedrehte beispiel dazu. ich möchte nämlich auch das die checkbox auslesen kann, ob sich die combobox2 bei einer auswahl von combobox1 auf enabled=false stellt?
Meinst Du das jetzt so?
Code für Form1:
Delphi-Quellcode:
implementation
Uses
Unit2;
{$R *.dfm}
procedure TForm1.ComboBox2Change(Sender: TObject);
begin
ComboBox1.Enabled := not ((ComboBox2.Text <> '') AND (Form2.CheckBox1.Checked))
end;
Code für Form2:
Delphi-Quellcode:
Uses
Unit1;
{$R *.dfm}
procedure TForm2.CheckBox1Click(Sender: TObject);
begin
Form1.ComboBox1.Enabled := not ((Form1.ComboBox2.Text <> '') AND (CheckBox1.Checked))
end;
Stephan B.
"Lasst den Gänsen ihre Füßchen"