|
28 Apr |
TFileListBox – Multiselectionen abarbeiten Borland C++ Builder
|
for (int i = 0; i < FileListBox1->Items->Count; i++)
{
if (FileListBox1->Selected[i])
{
ShowMessage(FileListBox1->Items->Strings[i]);
}
}
|
28 Apr |
TFileListBox – Multiselectionen abarbeiten Borland C++ Builder
|
for (int i = 0; i < FileListBox1->Items->Count; i++)
{
if (FileListBox1->Selected[i])
{
ShowMessage(FileListBox1->Items->Strings[i]);
}
}