Da Du einen Vergleich anstrebst, darfst Du nur ein "=" anstatt des ":=" nutzen.
Code:
procedure TForm1.ComboBox1Change(Sender: TObject);
begin
[color=#f50000] if Combobox1.Items.Text [/color][color=#0000ff]:[/color][color=#f50000]= 'Name' then[/color]
// WIRD ZU
[color=#f50000] if Combobox1.Items.Text = 'Name' then[/color]
begin
//ACTION
end
end;
...
...