Now I'm looking for a way to make the control "senitive" to some words in the text when the words are unterlined (or something else) so that the user can click on it and some action is performed.
Can this be done?
I was playing around with the MouseMove method without success...
Can anybody give me a clue?
Thanks,
Dietmar
- Code: Select all Expand view
METHOD MouseMove( nRow, nCol, nKeyFlags ) CLASS TFGet
if ::lDrag
return Super:MouseMove( nRow, nCol, nKeyFlags )
endif
if ::lCaptured
if nRow >= 32768
nRow -= 65536
endif
if nCol >= 32768
nCol -= 65536
endif
::MoveCaret( nRow, nCol )
::BlockUp()
// ::SendMsg( WM_MOUSEMOVE, nKeyFlags, nMakeLong( nCol, nRow ) )
do while GetAsyncKey( VK_LBUTTON ) .and. ;
( ( nRow < 0 .and. !( ::oLine == ::oLineInit ) ) .or. ;
( nRow > ::nHeight .and. !( ::oLine == ::oLineEnd ) ) )
::MoveCaret( nRow, nCol )
::BlockUp()
Delay( 0.03 )
nRow := aCursorCoors( ::hWnd )[1]
nCol := aCursorCoors( ::hWnd )[2]
enddo
return 0
endif
::oWnd:SetMsg( ::cMsg )
if ::oCursor != nil
SetCursor( ::oCursor:hCursor )
else
CursorIBeam()
endif
::CheckToolTip()
///Test+
IF ::oFont:lUnderline != nil
//Verlinkung nur bei unterstrichenen Normen
//?::oFont:lUnderline
IF ::oFont:lUnderline
CursorHAND()
ELSE
CursorARROW()
ENDIF
ENDIF
///Test-
if ::bMMoved != nil
Eval( ::bMMoved, nRow, nCol, nKeyFlags )
endif
return nil