Ok, I know how to do a Save As, but is there a way just to do a regular save, without the dialog box coming up? Even if I have to do a Save As the first time that is OK.
Printable View
Ok, I know how to do a Save As, but is there a way just to do a regular save, without the dialog box coming up? Even if I have to do a Save As the first time that is OK.
just use the save code not the commondialog code
ex:
Code:
If CommonDialog1.FileName = "" Then
Else
FileName = CommonDialog1.FileName
F = FreeFile
Open FileName For Output As _
#F
'Strings to Save. Aka Text
Print #F, Text1.Text
Close #F
End If
'Code improved by vBulletin Tool (Save as...)
what are you trying to Save?
is this just Text? a Webpage? etc?
an access database