Hey folks,

A minor Question, mainly for Ken Puls's work.

In his KB article "Force users to enable macros in a workbook",
In creating a template workbook, when you go to save as a "Template" you do not get the option in the "File Type" drop down box, only the .xls option.

the Original code
[vba] 'Save workbook directly or prompt for saveas filename
If SaveAs = True Then
newFname = Application.GetSaveAsFilename( _
fileFilter:="Excel Files (*.xls), *.xls")
If Not newFname = "False" Then ThisWorkbook.SaveAs newFname
Else
ThisWorkbook.Save
End If
[/vba]
How do you change it??