How can I open a "save as" dialog box in an Visual Basic application.
Thanks in advance
Juanyta Bradley
Printable View
How can I open a "save as" dialog box in an Visual Basic application.
Thanks in advance
Juanyta Bradley
Hi Jay=B
Nice and easy this one. Go to the project menu and click on components. Then find the Microsoft common dialog control and add it to your project. Once you have created one on your form, in you code all you need to do is write
common1.ShowSave
and common1.FileName to retreive the path of what the user has selected
Hope this helps
Ian