Hi ...
I`m using CommanDialog to create a txt file
And I want to Save the file without ShowSave
I want to save him always in the same Name and
in the same Dir
Printable View
Hi ...
I`m using CommanDialog to create a txt file
And I want to Save the file without ShowSave
I want to save him always in the same Name and
in the same Dir
Then save it by a string then instead of getting it from Commondialog,
Yoursaveprocedure Yourstring
Yoursaveprocedure "C:\autoexec.bat"
You want to save him?
Code:Open "c:\file.txt" for output as #1
Print #1, "yourtext"
Close #1
If you are saving many variables and you want to retrieve them easier, you can use Write instead of Print.
Code:Open "MyFile" For Output As #1
Write #1, MyVar, MyOtherVar
Close #1
10x A Lot You Really helped me both of you