所以我有一个包含 6 个项目的 CheckListBox :
Items.Strings = (
'Banana'
'Apple'
'Pomelo'
'Orange'
'Peach'
'BlueBarry')
如果我想在 ShowMessage 对话框中显示它们,则打印的消息是。
'anana','pple','omelo','range','each','lueBarry'.
我使用的程序是这样的。
procedure TForm1.Button1Click(Sender: TObject);
var I : Integer;
begin
for I := 0 to CheckListBox1.Items.Count - 1 do
ShowMessage(CheckListBox1.Items.ValueFromIndex[I]);
end;
为什么我无法从我的项目中获取第一个字符?