What are folderbrowser flags in Windows Forms Folder Browser
9 Dec 2019 / 1 minute to read
Flags can be used to set various styles for the FolderBrowser Dialog. Each style has it’s own behavior and these styles can be added or removed to get the desired style for the FolderBrowser Dialog.
Look at the below given snippet to apply “RestrictToSubfolders” style and to remove the “ShowTextBox” style for the FolderBrowser Dialog.
this.folderBrowser1.Style &= ~FolderBrowserStyles.RestrictToSubfolders;
this.folderBrowser1.Style |= FolderBrowserStyles.ShowTextBox;
Me.folderBrowser1.Style = Me.folderBrowser1.Style And Not FolderBrowserStyles.RestrictToSubfolders
Me.folderBrowser1.Style = Me.folderBrowser1.Style Or FolderBrowserStyles.ShowTextBox
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page