how can i add action in a xbrowse for a single Left click ?
Tx uwe D aus E
xBrowse simple Leftclick
-
- Posts: 167
- Joined: Thu Mar 22, 2007 11:24 am
-
- Posts: 42
- Joined: Sat Sep 30, 2006 9:43 am
-
- Posts: 167
- Joined: Thu Mar 22, 2007 11:24 am
-
- Posts: 167
- Joined: Thu Mar 22, 2007 11:24 am
UweUwe Diemer wrote:Yes u are right i dont notice it
Another Idea i want a detailed view of this row
how can i do that like tooltip which was shown after a few seconds
This can be done , as
oBrwB:bChange := {|Self,lUpDown| ShowLine(Self,lUpDown, @ShowDlg,oDlg) , SetActiveWindow(oDlg:hWnd) , oBrwb:SetFocus() )}
The second parameter (lUpDownn) is .T. when the row is changed (.F. changing columns)
When .T. , a Dialog (NOWAIT) can be build
Code: Select all
PROC ShowLine(oBrw,lUpDown,ShowDlg,oDlg)
**********************************
IF lUpDown
IF ShowDlg<>nil
ShowDlg:end()
END
DEFINE DIALOG ShowDlg OF oDlg ...
.....
ACTIVATE DIALOG ShowDlg NOWAIT
END
-
- Posts: 167
- Joined: Thu Mar 22, 2007 11:24 am