Hi,
What event gets triggered when the user resizes the column width of the tcbrowse control? I appreciate any help.
Bert
Hi,
What event gets triggered when the user resizes the column width of the tcbrowse control? I appreciate any help.
Bert
Bert,
Class TCBrowse does not send any specific notification for such event.
What action do you need to do on such event ? We may provide you some info about how to do it ![]()
Hi,
This is just a cosmetic thing. I have a dialog with two "identical" grids. I want the grids to be of the same column widths all the time. So, I need to know if the user resizes the first grid so i can update the other one.
Thanks
Bert
METHOD LButtonUp( nRow, nCol, nFlags ) CLASS TWBrowse
if ::lDrag
return Super:LButtonUp( nRow, nCol, nFlags )
endif
if ::lCaptured
::lCaptured = .f.
ReleaseCapture()
::VertLine()
If ! Empty( ::bColResized ) // new !
Eval( ::bColResized, Self ) // new !
endif // new !
endif
Super:LButtonUp( nRow, nCol, nFlags )
return nilAntonio, thanks a lot. This should do it. Have a nice day.
Bert