Search found 67 matches: bldclickdata

Return to advanced search

TXBrowse: error al hacer clic en el último registro.

... oCol:bStrData := { || fabricante->Descricao } oCol:cHeader := 'Razão Social' oCol:nWidth := 435 for nFor := 1 to 2 CbRWTELA:aCols[ nFor ]:blDClickData := {|r,c,f,o| (odbf:Fabric:=fabricante->codigo,mDescFabric:=fabricante->descricao, oCodFab:refresh(), oSayTextFabric:refresh(), oCodForn:setfocus(),oCodForn:refresh(), ...
by nixbeau
Tue Mar 05, 2013 12:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TXBrowse: error al hacer clic en el último registro.
Replies: 6
Views: 1187

ListBox and Xbrowse errors with array and bitmaps

... oCol:AddResource("CHECK3") oCol:bBmpData := { || if(aData[oLbx:nArrayAt,2]=="S",1,2)} oCol:bStrData := {|| NIL } oCol:bLDClickData := { |r,c,f,o| o:Value := If( o:Value == 'S', 'N', 'S' ) } NEXT How I can resolve this problem ? Someone can help me please ?
by Eoeo
Sun Aug 12, 2012 7:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ListBox and Xbrowse errors with array and bitmaps
Replies: 11
Views: 2908

Re: question about xBrowse and Fastedit

... not the preferred way of specifying double click action for xbrowse. If you want a specific double click action for specific columns, you use oCol:bLDClickData := { |nRow,nCol,nFlags,oColObject| your function(...)} If you want the same action for all columns, then oBrw:bLDClickDatas := { |nRow,nCol,nFlags,oColObject| ...
by nageswaragunupudi
Fri Jul 15, 2011 10:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: question about xBrowse and Fastedit
Replies: 4
Views: 727

Re: question about xBrowse and Fastedit

... triggers edit, whether fast edit is set to true or not if the column's nEditType > 0 if I press double click, I want to execute an action: oCol:bLDClickData := { |r,c,f,oCol| YourAction( r,c,f,oCol ) } This codeblock gets executed when the user double clicks on any cell of the column, whether ...
by nageswaragunupudi
Fri Jul 15, 2011 9:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: question about xBrowse and Fastedit
Replies: 4
Views: 727

Re: DblClick on xbrowse column's bitmap

... inbuilt functionality. However the programmer can implement this functionality on his own. Column object provides double click functionality. oCol:bLDClickData := { |nRow, nCol, nFlags, oCol| MyFunction( nRow, nCol, nFlags, oCol ) } function MyFunction( nRow, nCol, nFlags, oCol ) if nCol - oCol:nDisplayPos ...
by nageswaragunupudi
Wed Jun 29, 2011 3:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DblClick on xbrowse column's bitmap
Replies: 2
Views: 541

Re: DOBLECLICK

Hola Marco:

/* desactivamos las accciones del doble click para el xBrowse */
AEval( oGrid:aCols, { | o | o:bLDClickData := {||NIL} } )

Un saludo
JLL
by jll-fwh
Mon Nov 22, 2010 4:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: DOBLECLICK
Replies: 4
Views: 655

Re: XBrowse columna checkbox

Raymundo

Intenta con oCol:bLDClickData = {|| nil }
by Daniel Garcia-Gil
Sat Jul 03, 2010 6:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBrowse columna checkbox ( Solved )
Replies: 2
Views: 498

Re: Image button on xbrowse

Now I try with oCol:= oApp():oGrid:AddCol() oCol:cHeader := "" oCol:bEditValue := { || (oDTab)->BITMAP } oCol:cDataType := 'F' oCol:bLDClickData := { || If( ! Empty( cBmp := cGetFile( "(*.bmp)|*.bmp|" ) ), ; (oDTab)->BITMAP := cBmp, ) } Now I see the xbrowse but on this ...
by Silvio
Thu Mar 11, 2010 8:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Image button on xbrowse
Replies: 3
Views: 662

Problema con xBrowse y ARRAY

... 3.- izquierda oGrid:aCols[2]:nHeadStrAlign := 2 // Alineacion: 1.- derecha 2.- centrado 3.- izquierda oGrid:aCols[2]:nWidth := 60 oGrid:aCols[2]:bLDClickData := bLDClickData oGrid:aCols[2]:bRClickData := bRClickData oGrid:aCols[2]:bClrStd := {|| { iif( oGrid:aArrayData[ oGrid:nRowSel ][1] == ...
by jll-fwh
Fri Feb 12, 2010 2:09 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema con xBrowse y ARRAY
Replies: 3
Views: 988

Re: error justificado de columnas con xbrowse

... ) } oCol:cHeader := "Periodo" ocol:nDataStrAlign:=0 oCol:nWidth:=70 for nfor=1 to len(vv:oBrw:aCols) vv:oBrw:aCols[nfor]:blDClickData:= modifica vv:oBrw:aCols[nfor]:bRClickData:= menuderecho next nfor vv:oBrw:ntop:=120 vv:oBrw:nleft:=10 vv:oBrw:nright:=523 vv:oBrw:nbottom:=174 ...
by alvaro533
Tue Sep 15, 2009 4:25 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: error justificado de columnas con xbrowse
Replies: 8
Views: 1135

Re: TXBrowse() -> ::SetCheck()

... oCol:AddResource("TIQUEA-SI") oCol:bBmpData:= { || iif( TRAB->SEL, 1, 2) } // SEL es campo lógico oCol:nWidth:=15 oCol:bLDClickData:={|| ELIGE(oDBF) } //Doble click Izquierdo oCol:bRClickData :={|| ELIGE(oDBF) } //Boton Derecho // No he logrado hacer con un solo click ...
by acuellar
Wed Jun 10, 2009 1:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TXBrowse() -> ::SetCheck()
Replies: 5
Views: 853

Re: Is it possible to assign codeblock to a left-click in xBrw?

Thanks for the reply Samir. I was actually hoping there would be something similar to TXBrwColumn:bLDClickData
by hua
Fri May 29, 2009 1:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Is it possible to assign codeblock to a left-click in xBrw?
Replies: 2
Views: 513

Click Izq. en Data de Xbrowse

Buenas a todos Como se da un solo Click con el boton Izq. del mouse en una columna del XBrowse oCol:bLDClickData:= {|| ELIGE(oDBF) } // Doble Click oCol:bRClickData:= {|| ELIGE(oDBF) } //Boton Derecho Si coloco oCol:bLClickData:= {|| ELIGE(oDBF) } <- Da error Gracias por ...
by acuellar
Fri Apr 24, 2009 7:20 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Click Izq. en Data de Xbrowse
Replies: 4
Views: 534

... from ??? Frank oBrw:LDblClick is a METHOD not DATA for assigining the codeblock. It should be oBrw:bLDblClick := bAction or oBrw:aCols[ n ]:bLDClickData := bAction One advantage of using command syntax is that we dont commit such small obscure mistakes and dont spend hours and days in debugging. ...
by demont frank
Thu Oct 09, 2008 6:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : PROBLEM WITH bDblClick
Replies: 3
Views: 922

... from ??? Frank oBrw:LDblClick is a METHOD not DATA for assigining the codeblock. It should be oBrw:bLDblClick := bAction or oBrw:aCols[ n ]:bLDClickData := bAction One advantage of using command syntax is that we dont commit such small obscure mistakes and dont spend hours and days in debugging.
by nageswaragunupudi
Thu Oct 09, 2008 12:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : PROBLEM WITH bDblClick
Replies: 3
Views: 922
PreviousNext

Return to advanced search