View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Mike Fogleman Mike Fogleman is offline
external usenet poster
 
Posts: 1,092
Default SaveAs command doesn't save extension

Try this:

Sub savenew()
Dim NewBook As Workbook
Dim fname As String
Set NewBook = Workbooks.Add
Do
fname = Application.GetSaveAsFilename( _
fileFilter:="Excel Files (*.xls), *.xls")

Loop Until fname < ""
NewBook.SaveAs Filename:=fname
End Sub


Mike F
"stewart" wrote in message
oups.com...
I am trying to pull a SaveAs dialog box from a VB command that will
prompt the user to save their work. The problem is when the user
types in the filename it does not save as an excel file. The user
would have to type the extension themselves and that is not feasible
for this application. Below is the code I got from VB Help. Is there
another way?


sub savenew()
Set NewBook = Workbooks.Add
Do
fName = Application.GetSaveAsFilename
Loop Until fName < False
NewBook.SaveAs Filename:=fName
end sub