Hello,
I have been checking some apps what had problems in order to install in Managed Mode (due to background above the continue window) and after of apply the change what i sent yesterday it started to work. With luck it should work for every Installshield app. Now the question:
Do you know more apps with problems installing in managed mode?
Thanks. Regards, Carlos.
Pd: it is the change:
dlls/x11drv/windows.c
inline static BOOL is_window_managed( WND *win ) { if (!managed_mode) return FALSE; /* tray window is always managed */ if (win->dwExStyle & WS_EX_TRAYWINDOW) return TRUE; /* child windows are not managed */ if (win->dwStyle & WS_CHILD) return FALSE; /* tool windows are not managed */ if (win->dwExStyle & WS_EX_TOOLWINDOW) return FALSE; /* windows with caption or thick frame are managed */ if ((win->dwStyle & WS_CAPTION) == WS_CAPTION) return TRUE; if (win->dwStyle & WS_THICKFRAME) return TRUE;
/**************** New code *****************************/ if ((win->dwStyle & (WS_CLIPSIBLINGS|WS_CLIPCHILDREN) ) == (WS_CLIPSIBLINGS|WS_CLIPCHILDREN)) return TRUE; /************** End new code ***************************/
/* default: not managed */ return FALSE; }