As I'm sure this has already been asked and answered several times before, how do I use the common dialog control. I don't ask for a complete tutorial to be written out here, just that someone PLEASE direct me to an article or something.
Printable View
As I'm sure this has already been asked and answered several times before, how do I use the common dialog control. I don't ask for a complete tutorial to be written out here, just that someone PLEASE direct me to an article or something.
The general functions of it are Open,save as, font, and color.You can set filters heres a simple example:
With commondialog1
.filter = "All files|*.*| 'filter files
.initdir = "C:/win 'set directory
.showopen 'show the dialog box
end with
And upon completion of that the filepath property will contain the path? Or does it work some other way?