Server busy dialog

  • Thread starter Thread starter keralafood
  • Start date Start date
K

keralafood

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..
 
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..
 
Back
Top