--- np2/win9x/dialog/np2class.cpp 2003/11/01 22:23:04 1.2 +++ np2/win9x/dialog/np2class.cpp 2003/11/03 00:49:55 1.3 @@ -1,4 +1,5 @@ #include "compiler.h" +#include #include "resource.h" #include "winloc.h" #include "np2class.h" @@ -54,6 +55,17 @@ void np2class_move(HWND hWnd, int posx, MoveWindow(hWnd, posx, posy, cx, cy, TRUE); } +// ---- + +int CALLBACK np2class_propetysheet(HWND hWndDlg, UINT uMsg, LPARAM lParam) { + + if (uMsg == PSCB_INITIALIZED) { + SetWindowLong(hWndDlg, GWL_EXSTYLE, + GetWindowLong(hWndDlg, GWL_EXSTYLE) & (~WS_EX_CONTEXTHELP)); + } + return(0); +} + // ----