Can anyone help me with the ShowSave method of the CommonDialog box. It's the first time I am using this control. When I open a particular form, I would like to save the form to my hard disk. I assume I can do this with ShowSave. First of all, am I right and secondly what code to I need besides.
Dim Filter As String
Filter = Filter + "File Types (*.doc)|*.doc|"
SaveDialog.Filter = Filter
Me.SaveDialog.ShowSave
Am I way off base or can this be done?
Dim Filter As String
Filter = Filter + "File Types (*.doc)|*.doc|"
SaveDialog.Filter = Filter
Me.SaveDialog.ShowSave
Am I way off base or can this be done?