Click here to Skip to main content
15,904,024 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I want to change the "OK" button name to "SCAN" please help

What I have tried:

 FolderBrowserDialog fbd = new FolderBrowserDialog();
            fbd.ShowNewFolderButton = false;
            fbd.Description = "Select a Directory / Drive to Scan";            
            DialogResult result = fbd.ShowDialog();
            if (result == System.Windows.Forms.DialogResult.OK)
            {                
}
Posted
Updated 12-Apr-16 22:27pm

1 solution

Here is a reference for create own Folder Browser Dialog

Click Here

Thanks & Regard
SHAM :)
 
Share this answer
 
Comments
[no name] 13-Apr-16 4:48am    
I am not getting how it will work :(
Shambhoo kumar 13-Apr-16 4:59am    
It's custom control. First of all you need to create a custom control and then in your application right click on ToolBox and add your custom control on this. After adding this control you can easily use it on forms.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900