Page 1 of 1

WM_NEXTDLGCTL and GetNextDlgTabItem

Posted: Sat Feb 11, 2017 6:53 pm
by KDJ
If focus is in EditBox and you press Shift+Tab, focus will be set to the next control instead of the previous.
 
GetNextDlgTabItem.png
GetNextDlgTabItem.png (43.19 KiB) Viewed 1907 times
 
The third parameter in GetNextDlgTabItem is logical type, so
GetNextDlgTabItem ( GetActiveWindow() , GetFocus() , 1 )
works as
GetNextDlgTabItem ( GetActiveWindow() , GetFocus() , .F. )

Re: WM_NEXTDLGCTL and GetNextDlgTabItem

Posted: Sat Feb 11, 2017 8:58 pm
by srvet_claudio
Thanks for report