hWndCtl = WindowFromPoint( nRow, nCol )
if oWndFromHwnd( hWndCtl ) != nil .and. oWndFromHwnd( hWndCtl ):bDragOver != nil
SetCursor( ... )
else
SetCursor( ... )
endif
METHOD MouseMove( nRow, nCol, nKeyFlags ) CLASS TWindow
/*
// original code
if ::oCursor != nil
SetCursor( ::oCursor:hCursor )
else
CursorArrow()
endif
*/
// Proposed Code
if uDropInto != nil .and. ::bDropOver == nil .and. ::bDropFiles == nil
SetCursor( oNoDropCursor:hCusor )
elseif ::oCursor != nil
SetCursor( ::oCursor:hCursor )
else
CursorArrow()
endif
Return to FiveWin for Harbour/xHarbour
Users browsing this forum: shrifw and 64 guests