G
Greg Maxey
Hi,
Several years ago I downloaded and installed a little program that generates
sounds when I perform some office funtions like Save, Print, etc.
If I click on OfficeMenu>Save or press CTRL+s the document is saved with an
accompanying chime.
I am trying to create that same effect using VBA with no success. I have
tried:
Sub Test1()
ActiveDocument.Saved = False
ActiveDocument.Save
End Sub
Sub Test2()
ActiveDocument.Saved = False
CommandBars.ExecuteMso ("FileSave")
End Sub
Both procedures do in fact save the document but the action isn't
accompanied by the chime.
Can this be done?
Thanks.
Several years ago I downloaded and installed a little program that generates
sounds when I perform some office funtions like Save, Print, etc.
If I click on OfficeMenu>Save or press CTRL+s the document is saved with an
accompanying chime.
I am trying to create that same effect using VBA with no success. I have
tried:
Sub Test1()
ActiveDocument.Saved = False
ActiveDocument.Save
End Sub
Sub Test2()
ActiveDocument.Saved = False
CommandBars.ExecuteMso ("FileSave")
End Sub
Both procedures do in fact save the document but the action isn't
accompanied by the chime.
Can this be done?
Thanks.