Search found 210 matches: brclicked

Return to advanced search

xbrowse problem with :bLClicked

i have a xbrowse with :SetMultiSelectCol() with bRClicked I associated a menupopup with :bLClicked I click on a row and select it I made the same with :bKeyChar ( space button)   :bLClicked := { |r,c,f,oBrw| if( oBrw:Mousecolpos( ...
by Silvio.Falconi
Sun Apr 21, 2024 7:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse problem with :bLClicked
Replies: 5
Views: 100

Re: also error with btnbmp SHOWPOPUP

Nages, I have one popup on this codeblock oBrw:bRClicked := {|nRow,nCol| Disp_Menu_Comuni(oParent,nRow,nCol,oDbf,oBrw,cSection,oCont) .....} Function Disp_Menu_Comuni(oParent,nRow,nCol,oDbf,oBrw,cSection,oCont) .... ENDMENU ACTIVATE POPUP oMenu ...
by Silvio.Falconi
Sun Mar 31, 2024 9:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: also error with btnbmp SHOWPOPUP
Replies: 8
Views: 1706

CONTROLAR CLICK SOBRE COLUMNA EN XBROWSE

... horizontal oBrw:nStretchCol := STRETCHCOL_WIDEST oBrw:bLDblClick := {|| Opcion_Producto(oBrw, cTab_Art, cEmpresa), cTab_Art:Refresh() } oBrw:bRClicked := {|| Stock_Producto(.F.,oBrw, cTab_Art, cEmpresa, cTab_Art:cod_art), cTab_Art:Refresh() } oBrw:bKeyDown := { | nKey | TeclasProducto(nKey, ...
by kpidata
Fri Sep 01, 2023 7:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CONTROLAR CLICK SOBRE COLUMNA EN XBROWSE
Replies: 1
Views: 331

evitar que se active columna con xbrowse al dar un click

... horizontal oBrw:nStretchCol := STRETCHCOL_WIDEST oBrw:bLDblClick := {|| Opcion_Producto(oBrw, cTab_Art, cEmpresa), cTab_Art:Refresh() } oBrw:bRClicked := {|| Stock_Producto(.F.,oBrw, cTab_Art, cEmpresa, cTab_Art:cod_art), cTab_Art:Refresh() } oBrw:bKeyDown := { | nKey | TeclasProducto(nKey, ...
by kpidata
Fri Sep 01, 2023 7:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inhabilitar columna en xBrowse - Disable column in xBrowse
Replies: 8
Views: 1077

Re: Obtener coordenadas con el mouse.

Estimado José,

oDlg:bLClicked = { | nRow, nCol | MsgInfo( nRow, nCol ) }
oDlg:bRClicked = { | nRow, nCol | MsgInfo( nRow, nCol ) }
by Antonio Linares
Mon Aug 07, 2023 5:49 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Obtener coordenadas con el mouse.
Replies: 2
Views: 184

Re: Xbrowse : oBrw:ToArray (How to do it)

Thanks for the clarification !! I tried to add a col to the function oBrw:bRClicked := { |r,c,f,oBrw| aResult := XbrToArray( oBrw, [ aCols ] ) How does the passing aCols look like ? {1,2} {"ColName1","Colname2"} these don't work. When I look ...
by Marc Venken
Thu Apr 13, 2023 7:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : oBrw:ToArray (How to do it)
Replies: 13
Views: 957

Re: Xbrowse : oBrw:ToArray (How to do it)

... "data" ] ) COLUMNS "productid", "model" setup ( oBrw:cHeaders := {"productid","model"}, oBrw:bRClicked := { |r,c,f,oBrw| aResult := XbrToArray( oBrw, [ aCols ] ) } ) errorline = aData := Array( nRows, Len( aCols ) ) Error description: Error ...
by Marc Venken
Wed Apr 12, 2023 2:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : oBrw:ToArray (How to do it)
Replies: 13
Views: 957

Xbrowse : oBrw:ToArray (How to do it)

... "data" ] ) COLUMNS "productid", "model" setup ( oBrw:cHeaders := {"productid","model"}, oBrw:bRClicked := { |r,c,f,o| o:ToDbf( "download.dbf" ) } ) This xbrowse (from a jSon Hash) will create a dbf with the data that I need. I want ...
by Marc Venken
Wed Apr 12, 2023 10:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : oBrw:ToArray (How to do it)
Replies: 13
Views: 957

Re: Botón derecho en btnbmp

oBtn:bRClicked := { || msgstop("hello") }
by JESUS MARIN
Sat Jan 07, 2023 4:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Botón derecho en btnbmp
Replies: 2
Views: 228

Re: right-click Menu for Control

Use for this DATA bRClicked
by cnavarro
Wed Oct 26, 2022 12:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: right-click Menu for Control
Replies: 5
Views: 275

Re: FiveWin ActiveX Event

... aParams ) } btw. it work with "FROM TActiveX" / ::SUPER or as show Question : what is the right Way :?: i also add Slot for ::bRClicked      // ActiveX have no Property bRClicked so ADD it      ::bRClicked = { |nRow, nCol| VLCMenu( oWnd, nRow, nCol,::oControl,::nIndex ...
by Jimmy
Mon Jul 18, 2022 11:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWin ActiveX Event
Replies: 6
Views: 626

Re: How do I know the field name in xbrowse:column

... would be confusion between navigation and which cell to act upon. Still if you want to assign action to single click, assign the action to oBrw:bRClicked and you can ascertain the active column with oBrw:SelectedCol()
by dutch
Wed Dec 22, 2021 5:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How do I know the field name in xbrowse:column
Replies: 22
Views: 2277

Re: How do I know the field name in xbrowse:column

... would be confusion between navigation and which cell to act upon. Still if you want to assign action to single click, assign the action to oBrw:bRClicked and you can ascertain the active column with oBrw:SelectedCol()
by nageswaragunupudi
Mon Dec 20, 2021 3:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How do I know the field name in xbrowse:column
Replies: 22
Views: 2277

Re: error on btnbmp with fwh 21.04

... 304 )   Called from: James.prg => TESTTDATABASE( 202 ) I explain you I have on line 128 of my procedure this line oBrw:bRClicked := {|nRow,nCol| CLDisp_Men(nRow,nCol,oBrw,cPrefixState+"Aux",oDbf,oDlg)} CLDisp_Men function open a menu Function  CLDisp_Men(nRow,nCol,oBrw,cIniEntry,oDbf,oDlg)  ...
by Silvio.Falconi
Sun Jun 06, 2021 8:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: error on btnbmp with fwh 21.04
Replies: 8
Views: 752

Re: New FTDN April/Abril 2021 (FWH 21.04)

... cNewSQL ) hacía que el conjunto de filas fuera de sólo lectura. Ahora se ha corregido. * Mejoras en TMSGITEM: - Los bloques de código bAction y bRClicked estaban siendo evaluados con sólo dos parámetros nRow y nCol. Ahora son evaluados con tres parámetros: nRow,nCol y nSelf. - Nuevo método ShowPopUp( ...
by Antonio Linares
Fri Jun 04, 2021 2:15 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2021 (FWH 21.04)
Replies: 8
Views: 1960
Next

Return to advanced search