Can i disable "SAVE AS" Menu option from MS Word by using Lotus Script?

Hi,

Can i disable “SAVE AS” Menu option from MS Word by using Lotus Script ?

I am creating the object using

Set word = createobject(“word.application”)

word.visible=True

While opening the word document it should disable the SAVE AS menu option, any solution ?

Thanks

Renjith

Subject: Can i disable “SAVE AS” Menu option from MS Word by using Lotus Script ?

Set xlApp =CreateObject(“Excel.Application”)Set oMainMenuBar = xlApp.CommandBars(“Worksheet Menu Bar” )

oMainMenuBar.Controls(5).Enabled = False 'Save As Button