FilterComboBoxFilter (C++)
Description
This example uses a filter combo box and a file list box on a form. When you select a filter in the filter combo box, the file list box displays only files that match the selected mask.
Code
void __fastcall TForm1::FilterComboBox1Change(TObject *Sender)
{
FileListBox1->Mask = FilterComboBox1->Mask;
}
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
FilterComboBox1->Filter = "All files (*.*)|*.*| Executable files (*.exe)|*.exe";
}
Uses
- Vcl.FileCtrl.TFilterComboBox.Filter ( fr | de | ja )
- Vcl.FileCtrl.TFileListBox.Mask ( fr | de | ja )
- Vcl.FileCtrl.TFilterComboBox.Mask ( fr | de | ja )