Results 1 to 3 of 3

Thread: [RESOLVED] oXLBook.SaveAs FILENAME options/flags?

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Feb 2008
    Posts
    23

    Resolved [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

  2. #2
    Discovering Life Siddharth Rout's Avatar
    Join Date
    Feb 2005
    Location
    Mumbai, India
    Posts
    12,001

    Re: oXLBook.SaveAs FILENAME options/flags?

    Quote 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:
    1. Sub SaveAsFile()
    2.  
    3. 'Disable dialog Box
    4. Application.DisplayAlerts = False
    5.        
    6. 'Your Code
    7. 'oXLBook.SaveAs FILENAME.... blah... blah...
    8.  
    9. 'Re-enable Dialog Box
    10. Application.DisplayAlerts = True
    11.  
    12. 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

  3. #3

    Thread Starter
    Junior Member
    Join Date
    Feb 2008
    Posts
    23

    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
  •  



Click Here to Expand Forum to Full Width