Saving from a template

S

sadsfan

I have made a custom template with a custom toolbar. I have added the save
command to this toolbar. When I click this the save dialog box pops up, but
the file formast is set to *.htm. how can I make sure that it will save as a
*.doc?
 
C

Cooz

Hi sadsfan,

With Application.Dialogs(wdDialogFileSaveAs)
.Format = 0
.Show
End With

Good luck,
Cooz
 
Top