On Apr 29, 3:19 pm, keralaf...@gmail.com wrote:
> How i can controll server busy dialog through automation...i don't
> want display this dialog,instead i want wait till server free,how i
> can identify beafore displaying this dialog?(Especially powerpoint
> 2007 has more problem)
> how i can implement COleMessageFilter in powerpoint ?
> any help really appreciable..
If using MFC
OleInitialize(NULL);
COleMessageFilter *filer;
filer = AfxOleGetMessageFilter();
filer->EnableBusyDialog(false);
i believe it will work..