|
-
Feb 8th, 2008, 04:04 PM
#1
Thread Starter
Junior Member
[RESOLVED] oXLBook.SaveAs FILENAME options/flags?
I am wondering if there are any flags that I can set on this command so that it saves the file, and will not prompt the user if a file of the same name already exists.
I opened up a template file and added to some of the fields, then wasnted to save as a new file (filename), however that (filename) may already exist, if it does I dont want the application to prompt the user for anything, I want to always overwrite any existing files.
Derek
-
Feb 9th, 2008, 03:06 AM
#2
Re: oXLBook.SaveAs FILENAME options/flags?
 Originally Posted by shadderk
I am wondering if there are any flags that I can set on this command so that it saves the file, and will not prompt the user if a file of the same name already exists.
I opened up a template file and added to some of the fields, then wasnted to save as a new file (filename), however that (filename) may already exist, if it does I dont want the application to prompt the user for anything, I want to always overwrite any existing files.
Derek
Does this help?
vb Code:
Sub SaveAsFile()
'Disable dialog Box
Application.DisplayAlerts = False
'Your Code
'oXLBook.SaveAs FILENAME.... blah... blah...
'Re-enable Dialog Box
Application.DisplayAlerts = True
End Sub
A good exercise for the Heart is to bend down and help another up...
Please Mark your Thread " Resolved", if the query is solved
MyGear:
★ CPU ★ Ryzen 5 5800X
★ GPU ★ NVIDIA GeForce RTX 3080 TI Founder Edition
★ RAM ★ G. Skill Trident Z RGB 32GB 3600MHz
★ MB ★ ASUS TUF GAMING X570 (WI-FI) ATX Gaming
★ Storage ★ SSD SB-ROCKET-1TB + SEAGATE 2TB Barracuda IHD
★ Cooling ★ NOCTUA NH-D15 CHROMAX BLACK 140mm + 10 of Noctua NF-F12 PWM
★ PSU ★ ANTEC HCG-1000-EXTREME 1000 Watt 80 Plus Gold Fully Modular PSU
★ Case ★ LIAN LI PC-O11 DYNAMIC XL ROG (BLACK) (G99.O11DXL-X)
★ Monitor ★ LG Ultragear 27" 240Hz Gaming Monitor
★ Keyboard ★ TVS Electronics Gold Keyboard
★ Mouse ★ Logitech G502 Hero
-
Feb 11th, 2008, 11:01 AM
#3
Thread Starter
Junior Member
Re: oXLBook.SaveAs FILENAME options/flags?
Yahoo!!
That was exactly what I was looking for. Took care of the issue I was trying to solve.
What a great start to a monday morning..
Thank you for the help there.
Derek
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
|