The TCN_SELCHANGING notification message notifies a tab control’s parent window that the currently selected tab is about to change. This message is sent in the form of a WM_NOTIFY message.
TCN_SELCHANGING idTabCtl = (int) LOWORD(wParam); lpnmhdr = (LPNMHDR) lParam;
Returns TRUE to prevent the selection from changing or FALSE to allow the selection to change.
To determine the currently selected tab, use the TabCtrl_GetCurSel macro.
NMHDR, TabCtrl_GetCurSel, TCN_SELCHANGE, WM_NOTIFY
Questions:
Comments: