Feethree
Feethree

Reputation: 11

Save file without Save Dialog in Visual Basic 6.0

I want to save a file without showing the save dialog because the file is always the same. How can I make it? Thanks.

Upvotes: 1

Views: 1368

Answers (1)

Corin
Corin

Reputation: 2457

The save dialog doesn't save a file, it simply presents the user with a method of selecting the file name and location for the file to be created.

If you want to save the file without displaying the save dialog, then don't display the save dialog.

Upvotes: 9

Related Questions