10-17-2006 03:06 PM
10-18-2006 02:36 AM
To disable a panel callback, you can use InstallPanelCallback (panel, 0, 0); The same could be done in control callbacks with InstallCtrlCallback (panel, control, 0, 0);Alla panel and control callbacks must be reisntalled when you need them again.
Alternatively (maybe it's simpler), you could manage a global variable that is raised when entering your special section of code and in panel and control callbacks return immediately if that variable is on.