Question How to change the button text on an OpenFileDialog?

UncleRonin

Well-known member
Joined
Feb 28, 2006
Messages
230
Location
South Africa
Programming Experience
5-10
How can the button text of an OpenFileDialog be changed in the cleanest possible manner?

I've looked around and so far none of the solultions are all that simple and all require some fiddling with handles and things.
 
Make your own OpenFileDialog form, then you can customize any part of the dialog form.
 
I've looked around and so far none of the solultions are all that simple and all require some fiddling with handles and things.
These are the simplest ways of changing the button text.
 
How can the button text of an OpenFileDialog be changed in the cleanest possible manner?

I've looked around and so far none of the solultions are all that simple and all require some fiddling with handles and things.
That's because there is no "easy" way. You either have to modify the Text on the button on the window as it's showing by using the windows handles and hooks or you could just make your own, which is also not as simple as you're looking for.
 
Back
Top