|
-
Jul 18th, 2005, 10:22 AM
#1
Thread Starter
Junior Member
Excel Save Continued/...
Can anyone help by telling me what is wrong with my code. I am trying to automate saving an excel file once data has been input. The problem is I still get a command asking if I wish to save changes to the file that already exists even although i've just saved it as this filename!
VB Code:
strPath = "C:\Test\"
strFile = frmStartScreen.Text1.Text & ".xls"
strFileName = strPath & strFile
On Error Resume Next
Set objExcel = GetObject(, "Excel.Application")
On Error GoTo ErrRoutine
If objExcel Is Nothing Then
Set objExcel = New Excel.Application
End If
If Text1.Text = "1" Then
With objExcel
.Workbooks.Open "C:\Test\Test.xls"
.Cells(1, 1) = Text3.Text
.Cells(2, 1) = Text2.Text
.Cells(3, 1) = Text4.Text
.Cells(4, 1) = Text5.Text
.Cells(5, 1) = Text6.Text
.Cells(6, 1) = Text7.Text
.Cells(7, 1) = Text8.Text
.Cells(8, 1) = Text9.Text
.ActiveWorkbook.SaveAs strFileName
.ActiveWorkbook.Close savechanges:=True
End With
End If
I receive the message:
A file named 'C:\Test\Test.xls' already exists in this location. Do you want to replace it?
with the options to say Yes, No, Cancel
Can anyone tell me why it is asking me to save again? Have I forgotten some code or can anyone suggest a fix?
Edit: Added [vbcode][/vbcode] tags for clairty. - Hack
-
Jul 18th, 2005, 10:28 AM
#2
Re: Excel Save Continued/...
When you do a .SaveAs your still left with the original wb in Excel and the new SaveAs wb. So the first issue is when you run this multiple times your file will alread exist and you will get the overwrite prompt (no way to surpress it without accepting the default of 'No') You could delete the preexisting file just before your .SaveAs so it will never prompt you for the overwrite. Second issue is the .SaveAs saving a duplicate file as whatever you name it. The solution is to tell Excel that the original copy has alread been saved witht the .Saved = True property assignment.
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum. 
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it! 
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6 
-
Jul 18th, 2005, 10:40 AM
#3
Thread Starter
Junior Member
Re: Excel Save Continued/...
Can you perhaps suggest some code thiat would allow me to delete the file? I am pretty new to vb.
-
Jul 18th, 2005, 10:42 AM
#4
Re: Excel Save Continued/...
Sure, use the Kill function.
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum. 
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it! 
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|