Hello,
I have an excel file, which i open with a common dialog box and then i write some things in it and i want to save it and close it.
It seems easy, but the problem is the excel generates a "resumes.xlw", and i don't know how to exclude this.
My code is the following (shorted):
dlg.ShowOpen
Workbooks.Open dlg.FileName
...
Set xlSheet = Worksheets.Add
xlSheet.Range("B" & 3).Value = xlSheet_adatok.Range("B" & 1).Value
...
...
Application.SaveWorkspace
Application.Quit
Unload Me
Thank you
I have an excel file, which i open with a common dialog box and then i write some things in it and i want to save it and close it.
It seems easy, but the problem is the excel generates a "resumes.xlw", and i don't know how to exclude this.
My code is the following (shorted):
dlg.ShowOpen
Workbooks.Open dlg.FileName
...
Set xlSheet = Worksheets.Add
xlSheet.Range("B" & 3).Value = xlSheet_adatok.Range("B" & 1).Value
...
...
Application.SaveWorkspace
Application.Quit
Unload Me
Thank you