Search found 15 matches: brclick

Return to advanced search

OT Para Antonio FWDbg

Antonio,

Podrían para la proxima agregar el evento bRClick al FWDBG asi no es necesario hacer "doble click" para ver el valor?

GRACIAS!
by goosfancito
Tue Feb 22, 2022 9:23 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: OT Para Antonio FWDbg
Replies: 0
Views: 196

Re: XBROWSE brclicked

Nages,

please, is there a solution for this error I can implement in version 11.11 ?

bRClick is not executed if the xbrowse is empty or you click in an empty area of the xbrowse.

Many thanks.
by StefanHaupt
Tue Aug 28, 2012 1:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE brclicked
Replies: 6
Views: 1259

Re: xBrowse y bRclick

Simpler way: oBrw:bPopUp := { |oCol| MyPopUp( oCol ) }...........static function MyPopUp( oCol )   local oPop   MENU oPop POPUP 2007       MENUITEM 'Right Align' ACTION oCol:nDataStrAlign := AL_RIGHT       ,,,,,&nb...
by nageswaragunupudi
Sat Jul 03, 2010 1:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse y bRclick
Replies: 4
Views: 769

Re: xBrowse y bRclick

Hola :D Yo lo tengo a si :mrgreen: Saluditos :wink: oApp:oBrwX01:bRClicked := { | nRow, nCol | ShowPopup( nRow, nCol, oApp:oBrwX01 ) }//----------------------------------------------------------------------------//function ShowPopup( nRow, nCol, oBrw )   local oPopup, oFont...
by AIDA
Wed Jun 30, 2010 1:02 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse y bRclick
Replies: 4
Views: 769

Re: xBrowse y bRclick

José Luis, No es justo lo que necesito, pero me diste una idea para lograrlo. Lo que necesito es que mi función se ejecute cuando haga Rclick sobre la columna 1 del xBrowse. Logré hacerlo así: obrw:bRClicked := { | nRow, nCol | if(nCol>25 .and. nCol<175 , MiFuncion() , ) &...
by rolitocere
Tue Jun 29, 2010 4:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse y bRclick
Replies: 4
Views: 769

Re: xBrowse y bRclick

Rolis, te dejo un ejemplo:
Code: Select all  Expand view

  obrw:bRClicked := { | nRow, nCol | menuayutec(nrow, ncol, obrw ) }
 

Espero que sea esto lo que buscas.
Un saludo
José Luis
by groiss
Tue Jun 29, 2010 6:54 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse y bRclick
Replies: 4
Views: 769

xBrowse y bRclick

Hola

Necesito hacer que si presiono el botón derecho del mouse sobre una columna, se abra un menú de opciones pero no logro capturar este evento.

Algo así como

Code: Select all  Expand view
oBrw:aCols[1]:bRclick:={|| MiFuncion() }


¿Cómo puedo hacerlo?. Gracias.

Rolis
by rolitocere
Mon Jun 28, 2010 11:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse y bRclick
Replies: 4
Views: 769

Re: oxBrw - bRClick

Dear Mr. Rao,
thank you very much.
Best regards,
Otto
by Otto
Sat Jan 23, 2010 1:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oxBrw - bRClick
Replies: 2
Views: 422

Re: oxBrw - bRClick

oBrw:bRClicked := { | | ... }
by nageswaragunupudi
Sat Jan 23, 2010 12:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oxBrw - bRClick
Replies: 2
Views: 422

oxBrw - bRClick

What is the right way to use bRClick with xBrowse? I tried:

Code: Select all  Expand view
oxBrw:bRClick := { | nRow, nCol, nKey |  msginfo("rechte Maustaste")   }


but with no result. The codeblock is executed on painting the xbrowser and not when I click on a row.


Thanks in advance
Otto
by Otto
Sat Jan 23, 2010 11:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: oxBrw - bRClick
Replies: 2
Views: 422

... before losing focus METHOD New( nRow, nCol, nWidth, nHeigth, bLine, aHeaders, ; aColSizes, oWnd, cField, uVal1, uVal2, bChange, ; bLDblClick, bRClick, oFont, oCursor, aColors, ; cMsg, lUpdate, uAlias, lPixel, bWhen, ; lDesign, lCellBrw, nStyle, bLClick, aLine ) CONSTRUCTOR METHOD ReDefine( ...
by Natter
Mon Sep 08, 2008 11:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bChange
Replies: 9
Views: 5483

Error _BRCLICK occurs in xBrowse 8.03 sample ?

Hello, I wanted to have a look at the sample testxbr3 in the new version 8.03. There occurs allways the error _BRCLICK It doesn't matter, what i choose. Application =========== Path and name: D:\FWH\samples\testxbr3.exe (32 bits) Size: 1,824,256 bytes Time from start: 0 hours 0 mins 4 secs Error occ...
by ukoenig
Thu Mar 13, 2008 11:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error _BRCLICK occurs in xBrowse 8.03 sample ?
Replies: 2
Views: 501

I noticed this too. Please make this small correction in your copy of xbrowse.prg, till Mr Antonio provides the fix:

At line 5734 of xbrowse.prg

change:

obrw:bRClick := bRClick

as

oBrw:bRClicked := bRClick

Once you make this correction, the browse is working well
by nageswaragunupudi
Thu Mar 13, 2008 12:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 8.03
Replies: 6
Views: 1285

Antonio,

i just was curious about txBrowse enhancements in FWH 8.03.
When running the testxbr3 sample i get an error
Error description: Error BASE/1005 Message not found: TXBROWSE:_BRCLICK


Do i have to rebuild something?

Regards,
Detlef
by Detlef Hoefner
Thu Mar 13, 2008 12:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 8.03
Replies: 6
Views: 1285

... lRegistered AS LOGICAL METHOD New( nRow, nCol, nWidth, nHeigth, bLine, aHeaders, ; aColSizes, oWnd, cField, uVal1, uVal2, bChange,; bLDblClick, bRClick, oFont, oCursor, nClrFore,; nForeBack, cMsg, lUpdate, cAlias, lPixel, bWhen,; lDesign, bValid, bLClick, aActions, aSkipCol ) CONSTRUCTOR METHOD ...
by FWHISHOW
Wed Dec 12, 2007 4:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TWBROWSE - bkeydown não aceita VK_UP?
Replies: 9
Views: 4191

Return to advanced search

cron