openfiledialog

Should I implement File Dialog as Singleton ?

I'm developing a swing based application where I'm using many FileDialogs? So I say why not to make just one FileDialog object instead all of these instances and use it in the whole project? Is this a good assumption? does this have any performance improvement? Thanks ...

Style of OpenFileDialog when using Syncfusion in WPF

I'm using Syncfusion to change the style of my WPF application to the Office 2007 Blue style. But the OpenFileDialog shows in the default style of my OS (XP) and there doesn't seem to be any way to change its style. Is there a way to make the style of the dialog consistent with the rest of the application? (Apart from creating my own ve...

OpenFileDialog->DialogShow() results cause errors in SQLite

I have a program that accesses a database using SQLite. When I open a OpenFileDialog or a SaveFileDialog before I do the SQLite call: result = sqlite3_prepare_v2(databaseConnection,converted,10000,&stmt,&strptr); and choose "Cancel", everything works okay (result == SQLITE_OK) but when I choose "Open", even if I don't do anything with...

Is there a way to configure a WinForms OpenFileDialog (or some other) to browse for website URL's instead of files?

The question says it all. Is there a way to browse for website links such that, upon selection, it'll return the URL string from the dialog? ...