10

私の質問は Delphi 7 についてです。

ComboBox1コードで浮動小数点変数として使用するには、現在選択されている値を取得する必要があります。

t:=t+ComboBox1. // Not sure what to write here...

ありがとうございました!

4

3 に答える 3

11

TryStrToFloatがすでに Delphi 7 に含まれているかどうかはわかりませんが、そうであれば、このようにします。

procedure TForm1.ComboBox1Change(Sender: TObject);
var
  Value: Double;
begin
  if TryStrToFloat(ComboBox1.Text, Value) then
    T := T + Value
  else
    ShowMessage('You''ve entered wrong value ...');
end;
于 2011-11-19T12:30:38.393 に答える
5
// ItemIndex is the index of the selected item
// If no item is selected, the value of ItemIndex is -1
if (ComboBox1.ItemIndex >= 0) then
begin
  t := t + StrToFloat(ComboBox1.Items[ComboBox1.ItemIndex]);
end;
于 2011-11-19T12:22:56.720 に答える