Jul 8, 2003 #1 inetd Technical User Jan 23, 2002 115 HK How can I add / substract an option from FileType of TFileListBox at run time? Thanks.
Jul 8, 2003 #2 Supernat03 Programmer Apr 30, 2003 206 US If you want to remove Archive for example: FileListBox1->FileType >> ftArchive; FileListBox1->Clear(); FileListBox1->Update(); To add Archive back: FileListBox1->FileType << ftArchive; FileListBox1->Clear(); FileListBox1->Update(); Chris Upvote 0 Downvote
If you want to remove Archive for example: FileListBox1->FileType >> ftArchive; FileListBox1->Clear(); FileListBox1->Update(); To add Archive back: FileListBox1->FileType << ftArchive; FileListBox1->Clear(); FileListBox1->Update(); Chris