SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftPrintPreview/DLL 2.0 - Print Preview Control (discontinued)
SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftDirectory 3.5 - File/Folder Control (discontinued)
SftMask/OCX 7.0 - Masked Edit Control
SftOptions 1.0 - Registry/INI Control (discontinued)
SftPrintPreview/OCX 1.0 - Print Preview Control (discontinued)
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTabs/NET 6.0 - Tab Control (discontinued)
SftTree/NET 2.0 - Tree Control
This sample illustrates working with selections.
This is not an executable sample, so a complete project is not provided. These statements are intended to show the syntax used.
private void Form1_Load(object sender, System.EventArgs e) { // This sample uses 2 SftDirectory controls // SftDirectory1 allows single selection only axSftDirectory1.MultiSelect = SftDirectoryMultiSelectConstants.selectSftDirectorySingle; // SftDirectory2 allows multiple selection axSftDirectory2.MultiSelect = SftDirectoryMultiSelectConstants.selectSftDirectoryMultiple; } // This is a button event handler private void button1_Click(object sender, System.EventArgs e) { // Select one file/folder (in a single selection control) axSftDirectory1.get_FolderList(1).Selected = true; // Select a few files/folders (in a multiple selection control) axSftDirectory2.get_FolderList(1).Selected = true; axSftDirectory2.get_FolderList(3).Selected = true; axSftDirectory2.get_FolderList(5).Selected = true; } // This is another button event handler private void button2_Click(object sender, System.EventArgs e) { // Show the selected file/folder (in a single selection control) SftDirectoryFolder F; F = axSftDirectory1.get_Selection(0); if (F != null) { MessageBox.Show("\"" + F.Name + "\" is selected (in the single selection control)."); } // Show the selected files/folders (in a multiple selection control) int i; for (i = 0 ; i < axSftDirectory2.SelectionCount ; ++i) { F = axSftDirectory2.get_Selection(i); MessageBox.Show("\"" + F.Name + "\" is selected (in the multiple selection control)."); } }