set default path for save as dialog

D

dani

Hi there

How can I set the default path of the "Save As" dialog before it appears?

Is there an event that I could catch before the dialog appears?

I need it because if the document to be saved is a stencil, it should be
placed in another folder than a drawing...

Thanx for any help
 
S

soso

How can I set the default path of the "Save As" dialog before it appears?

Something like:

Dim xSaveDialog As New SaveFileDialog
xSaveDialog.InitialDirectory = "C:\Temp"
 
Top