Search found 236 matches: blclicked

Return to advanced search

Re: xBrowser click

Mr Rao,

I need to treat each xBrowser cell as if it were a button. Simply click on it and it will perform an action.

The bLClicked command, it seems, treats the entire line.

Att.,

Oliveiros Junior
by oliveiros junior
Tue Oct 17, 2023 4:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowser click
Replies: 16
Views: 784

error TXBROWSE:CARGOS

... 1, x, k, lFirstEdit ) } // PostEdit(o,x,k) } :nEditType := EDIT_GET END If !Empty( oRApertur:aCols ); oRApertur:Cargos := nil; endif oRApertur:bLClicked := { || ( dbselectarea( "RApertur" ), ofld1:aDialogs[ 2 ]:update(), oRApertur:gotop(), oRApertur:update(), oRApertur:refresh() ) ...
by jpcavagnaro
Wed Aug 30, 2023 12:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: error TXBROWSE:CARGOS
Replies: 3
Views: 265

Re: Inicie repositorio prueba e Tree

Comenta esta línea: // oTree:blclicked := { | nRow, nCol, nKeyFlags | oRama:= ::seleccionarRama( oTree, nRow, nCol, nKeyFlags ) } No puedes interferir el funcionamiento por defecto del botón izquierdo en el árbol y en este caso que necesito ...
by goosfancito
Tue Aug 22, 2023 1:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inicie repositorio prueba e Tree (LO LOGRE)
Replies: 22
Views: 971

Re: Inicie repositorio prueba e Tree

Comenta esta línea:

// oTree:blclicked := { | nRow, nCol, nKeyFlags | oRama:= ::seleccionarRama( oTree, nRow, nCol, nKeyFlags ) }

No puedes interferir el funcionamiento por defecto del botón izquierdo en el árbol
by Antonio Linares
Tue Aug 22, 2023 11:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inicie repositorio prueba e Tree (LO LOGRE)
Replies: 22
Views: 971

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: 178

Re: Recortar foto tomada con la camara web

Leandro, Añade estas líneas al ejemplo photos.prg: local oPen, nX1, nY1, nX2, nY2 DEFINE PEN oPen COLOR CLR_YELLOW WIDTH 3 ... oImg:bLClicked = { | nRow, nCol | If( nX1 == nil, ( nX1 := nRow, nY1 := nCol ), ( nX1 := nil, nX2 := nil ) ) } oImg:bMMoved = { | nRow, nCol, hDC | If( nX1 != nil,; ...
by Antonio Linares
Tue May 23, 2023 4:13 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Recortar foto tomada con la camara web
Replies: 7
Views: 475

Re: problem wth SetMultiSelectCol

... run ok Your solution Is no good because It go to conflict to doubleclick call edit function Oy Mr. Nageswarao can resolve it Dear Silvio, DATA bLClicked is of TXBROWSE CLASS You must calculate the column in which the mouse click occurred Try with this code // Remove             //WITH OBJECT ...
by Silvio.Falconi
Sat Apr 29, 2023 9:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem wth SetMultiSelectCol
Replies: 11
Views: 618

Re: problem wth SetMultiSelectCol

... run ok Your solution Is no good because It go to conflict to doubleclick call edit function Oy Mr. Nageswarao can resolve it Dear Silvio, DATA bLClicked is of TXBROWSE CLASS You must calculate the column in which the mouse click occurred Try with this code // Remove             //WITH OBJECT ...
by cnavarro
Sat Apr 29, 2023 8:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem wth SetMultiSelectCol
Replies: 11
Views: 618

problem wth SetMultiSelectCol

... function btnbar() ( change the buttonbar) and refreshtitle() ( change dialog title) I tried with WITH OBJECT  oBrw:aCols[1]               :bLClicked := { |r,c,f,oBrw| If( ( f := AScan( oBrw:aSelected, oBrw:BookMark ) ) == 0, ;                     (AAdd( ...
by Silvio.Falconi
Sat Apr 29, 2023 1:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem wth SetMultiSelectCol
Replies: 11
Views: 618

Re: REDIMENSIONAR VENTANA MDI STYLE POPUP [SOLUCIONADO]

Me contesto yo mismo. oWnd:bLClicked = { | nRow, nCol | ...... } // activa la acción al pulsar boton izquierdo oWnd:bMMoved = { | nRow, nCol | ...... } // controla movimiento del raton oWnd:bLButtonUp = { | nRow, nCol | ........ } // al ...
by karinha
Thu Mar 30, 2023 10:47 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: REDIMENSIONAR VENTANA MDI STYLE POPUP [SOLUCIONADO]
Replies: 5
Views: 490

Re: REDIMENSIONAR VENTANA MDI STYLE POPUP [SOLUCIONADO]

Me contesto yo mismo. oWnd:bLClicked = { | nRow, nCol | ...... } // activa la acción al pulsar boton izquierdo oWnd:bMMoved = { | nRow, nCol | ...... } // controla movimiento del raton oWnd:bLButtonUp = { | nRow, nCol | ........ } // al ...
by JESUS MARIN
Thu Mar 30, 2023 4:49 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: REDIMENSIONAR VENTANA MDI STYLE POPUP [SOLUCIONADO]
Replies: 5
Views: 490

Ayuda por favor con folder y listbox

... ; headers "Nombre", "Apellido", ; "Cargo" ; SIZES 200, 200, 100 ; id 215 OF ofld1:aDialogs[ 2 ] update oRApertur:bLClicked := { || (dbselectarea( "RApertur" ),oFld1:aDialogs[2]:update) } oRApertur:nClrPane := { || IIF( ( recno() ) % 2 == 0 , ; // Efecto ...
by jpcavagnaro
Wed Mar 29, 2023 12:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ayuda por favor con folder y listbox
Replies: 1
Views: 233

signatur.prg How can I know if the user has signed or not?

... := .T. oSig:bLButtonUp := { | x, y, z | DoDraw( hDC, y+1, x+1, lPaint := .F. ) } oSig:bMMoved := { | x, y, z | DoDraw( hDC, y, x , lPaint ) } oSig:bLClicked := { | x, y, z | DoDraw( hDC, y, x, lPaint := .T. ) } ACTIVATE DIALOG oDlg CENTER ; ON INIT ( hDC := GetDC( oSig:hWnd ) ) ; VALID ( ReleaseDC( ...
by MGA
Fri Nov 11, 2022 3:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: signatur.prg How can I know if the user has signed or not?
Replies: 5
Views: 395

Re: XIMAGE -> CLASS TXImage -> ACTION ?

... utility program to search offline in the forum topics. You can also read the samples programs into it, so you can search for a item like : oBrw:blclicked and you get a list off all the topics that has the search word. The list is then also linked to the forum topic position so 1 click and you ...
by Marc Venken
Thu Aug 04, 2022 7:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XIMAGE -> CLASS TXImage -> ACTION ?
Replies: 4
Views: 607

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

Dear Master, Thank you so much, I got it. There is no bLClicked data for TXBrwColumn. The intention of the original authors of the XBrowse is not to use single-click for any action, because single-click is used for navigation in the browse. If an action ...
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: 1993
Next

Return to advanced search