Sir

Please any help me. I have do comments enable of adobe acrobat pro 9 extented using c sharp dot net.
There has one problem when MenuItemExecute("Annots:ReaderEnable") statement execute then save as
dialog box open but i want to avoid this dialog box and save pdf.

private CAcroApp mApp;
bool isent = false;
CAcroAVDoc avDoc;
mApp = new AcroAppClass();
avDoc = new AcroAVDocClass();
string fileName = @"C:\TEMP\faa\pdf\00084R6L.PDF";
if (avDoc.Open(fileName, ""))
{
mApp.Show();
bool flag = mApp.MenuItemExecute("Annots:ReaderEnable"); // here save as Dialog box open
sendKeys();
// MessageBox.Show(flag.ToString());
mApp.CloseAllDocs();
mApp.Exit();
}