ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Save Dialog pops up now - Excel 2007 (https://www.excelbanter.com/excel-programming/438128-save-dialog-pops-up-now-excel-2007-a.html)

mcescher

Save Dialog pops up now - Excel 2007
 
I have a macro that creates my file and then saves it. I've just
recently upgraded to Office 2007, and now Excel prompts me to save the
file when it didn't before.

I'm doing a SaveAs, and specifying the path\filename. Can I turn off
the "Do you want to save" message and just do it? Code follows:


Public Sub SaveExcelReport(strFullName As String)
Dim objFS As Object
Dim strFolder As String
On Error GoTo SaveExcelReport_Error:
''Create reports directory if it doesn't exist
Set objFS = CreateObject("Scripting.FileSystemObject")
strFolder = Left$(strFullName, InStrRev(strFullName, "\", -1,
vbTextCompare))
If Not objFS.folderexists(strFolder) Then
objFS.createfolder (strFolder)
End If
''Overwrite without warning
xlaReport.DisplayAlerts = False
xlaReport.ActiveWorkbook.SaveAs strFullName, xlExcel12, "", "",
False, False, xlNoChange, xlLocalSessionChanges
''Old (Access 2003) version
'xlaReport.ActiveWorkbook.SaveAs strFullName, xlNormal, "", "",
False, False
xlaReport.DisplayAlerts = True
Exit Sub
SaveExcelReport_Error:
Debug.Print Err.Description
Resume Next
End Sub

Thanks for taking the time to look,
Chris M.

mcescher

Save Dialog pops up now - Excel 2007
 
On Jan 7, 2:22*pm, mcescher wrote:
I have a macro that creates my file and then saves it. *I've just
recently upgraded to Office 2007, and now Excel prompts me to save the
file when it didn't before.

I'm doing a SaveAs, and specifying the path\filename. *Can I turn off
the "Do you want to save" message and just do it? *Code follows:

Public Sub SaveExcelReport(strFullName As String)
* Dim objFS As Object
* Dim strFolder As String
* On Error GoTo SaveExcelReport_Error:
''Create reports directory if it doesn't exist
* Set objFS = CreateObject("Scripting.FileSystemObject")
* strFolder = Left$(strFullName, InStrRev(strFullName, "\", -1,
vbTextCompare))
* If Not objFS.folderexists(strFolder) Then
* * objFS.createfolder (strFolder)
* End If
''Overwrite without warning
* xlaReport.DisplayAlerts = False
* xlaReport.ActiveWorkbook.SaveAs strFullName, xlExcel12, "", "",
False, False, xlNoChange, xlLocalSessionChanges
''Old (Access 2003) version
* 'xlaReport.ActiveWorkbook.SaveAs strFullName, xlNormal, "", "",
False, False
* xlaReport.DisplayAlerts = True
* Exit Sub
SaveExcelReport_Error:
* Debug.Print Err.Description
* Resume Next
End Sub

Thanks for taking the time to look,
Chris M.


I did try changing the file type to xlWorkbookNormal, and then it
saves fine, but when I double click on the resulting file, I get an
error message "Excel cannot open the file XXXXXX.xlsx because the file
format or file extension is not valid. Verify that the file has not
been corrupted and that the file extension matches the format of the
file"

sigh....

Thanks!
Chris M.


All times are GMT +1. The time now is 06:55 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com