Search found 88 matches: blclickheader

Return to advanced search

Re: header with a UDF

Harvey

Make sure oBrw:aCols[8]:bLClickHeader := {||msgInfo("Works") } is after column definition

HTH

Richard
by Richard Chidiak
Thu Jun 10, 2010 8:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: header with a UDF
Replies: 5
Views: 860

Re: header with a UDF

oBrw:aCols[xx]:bLClickHeader := {||yourfunction() }

HTH
by Richard Chidiak
Mon Jun 07, 2010 6:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: header with a UDF
Replies: 5
Views: 860

Re: XBrowse click izq en encabezado

Raymundo

oBrow:aCols[01]:bLClickHeader := {|| ORDENAHEADART(1,oBrow),COLORESHEADSART(1,oBrow),DbGoTop(),oBrow:Refresh(),oBrow:SetFocus()}

Espero te sirva.
Saludos.
by JavierVital
Thu Jun 03, 2010 1:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBrowse click izq en encabezado ( fixed )
Replies: 3
Views: 467

Re: xBrowse y SetOrder()

The code oBrw:aCols[x]:bLClickHeader:={|| oBrw:aCols[x]:SetOrder()}  is not necessary and this is redundant. It is enough if we assign value to oCol:cSortOrder (OrderTag/Index name). If oCol:cSortOrder is ...
by nageswaragunupudi
Wed May 05, 2010 4:02 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse y SetOrder()
Replies: 13
Views: 3238

xBrowse y SetOrder()

... Como poder mostrar el Bitmap asociado en el header al iniciar el xBrowse. Ahora se activa solo cuando presiono sobre el Header oBrw:aCols[x]:bLClickHeader:={|| oBrw:aCols[x]:SetOrder()} Quiero mostrarlo apenas se construya el xBrowse, no solo cuando se presiona sobre el header para activar ...
by Adolfo
Tue May 04, 2010 10:34 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse y SetOrder()
Replies: 13
Views: 3238

Re: txBrwColumn con BtnBmp en header

Saludos Cesar... bLClickHeader hace exactamente lo que solicitas te dejo un ejemplo para la columna 1 y columna 2 #include "fivewin.ch"#include "xbrowse.ch"function main()   local oWnd   local aArray := ...
by Daniel Garcia-Gil
Thu Feb 04, 2010 12:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: txBrwColumn con BtnBmp en header
Replies: 1
Views: 279

txBrwColumn con BtnBmp en header

Requiero hacer una operación sobre la data de un txBrowse cuando se hace click sobre un encabezado de columna.

Ya sé que puedo definir oCol:bLClickHeader, pero nada me indica que existe esta opción de hacer click.

¿ Se puede pintar un header con un btnbmp?

Gracias.

[FWH9.07 + xHb1.21 + BCC55]
by César E. Lozada
Thu Feb 04, 2010 2:20 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: txBrwColumn con BtnBmp en header
Replies: 1
Views: 279

Re: Codeblock Using Position Out Of An Array

From version 8.03 onwards, it is no more necessary to code like oBrw:aCols[2]:bLClickHeader := {|| Sort(3)} for sorting on columns. Please see whatsnew.txt: b) New DATA cSortOrder. It is now not necessary to do the tedious coding of oCol:bLclickHeader ...
by nageswaragunupudi
Mon Aug 24, 2009 5:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Codeblock Using Position Out Of An Array
Replies: 6
Views: 1013

Error with array bitmaps

... the header oCol:cHeader := "Grado" oCol:nHeadBmpNo := if( (oDVds)->( ORDNUMBER() ) == 7, 1, 2) oCol:nHeadBmpAlign := AL_RIGHT oCol:bLClickHeader :={ ||(Sel_Index(6,oDVds) , oApp():oTab:nOption:=6,oApp():oTab:refresh()) } oCol:AddBmpFile(aGradiBmp[(oDVds)->GRADO]) oCol:bStrData ...
by Silvio
Fri Apr 17, 2009 9:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error with array bitmaps
Replies: 4
Views: 566

Re: show bitmaps on Header and columns with Xbrowse

... oCol:AddResource("sort1") oCol:AddResource("sort2") oCol:nHeadBmpNo := 2 oCol:nHeadBmpAlign := AL_RIGHT oCol:bLClickHeader :={ ||(Sel_Index(7,oDCli) , oApp():oTab:nOption:=7,oApp():oTab:refresh()) } oCol:AddResource("DOCENTE") oCol:AddResource("ALUNNO") ...
by Silvio
Mon Jan 12, 2009 10:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: show bitmaps on Header and columns with Xbrowse
Replies: 2
Views: 621

show bitmaps on Header and columns with Xbrowse

... oCol:cHeader := "Grado" oCol:bStrData := { || (oDCli)->GRADO} oCol:bBmpData := { || (oDCli)->GRADO} oCol:nWidth :=40 oCol:bLClickHeader :={ ||(Sel_Index(5,oDCli) ,; oApp():oTab:nOption:=5,; oApp():oTab:refresh()) } Problem : I want use for show bitmaps on column from 3° ...
by Silvio
Mon Jan 12, 2009 1:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: show bitmaps on Header and columns with Xbrowse
Replies: 2
Views: 621

... ::oBrw:setfocus() ::oBrw:Gotop() aEval( ::oBrw:aCols, { |oCol| oCol:bLDClickData := { || ::Ver(.t.) } } ) aEval( ::oBrw:aCols, { |oCol| oCol:bLClickHeader := {| nMRow, nMCol, nFlags, oCol|::IndexBrowse(oCol) }}) oVar:oDlg:bGotFocus:= { ||::oBrw:setfocus() } ::oBrw:bKeyDown := {|nKey| iif(nKey=13 ...
by Frafive
Thu Sep 25, 2008 8:31 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Alguien tiene un ejemplo funcional con xbrowse y eagle?
Replies: 2
Views: 578

xBrowse bmpsort

Hi all,

how can i reach that the little triangle is shown beside a header if i do the sorting with oBrw:aCols[ n ]:bLClickHeader.

I can not use cSortOrder or autosort.

Thanks and regards,
Detlef
by Detlef Hoefner
Tue Sep 23, 2008 11:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse bmpsort
Replies: 4
Views: 978

Re: Error xBrowse

... the object If we dont want the xbrowse to help us with auto-sorting and we insist on having our own way, then still the old method of defining the bLClickHeader action block is still available but thats a tedious way of coding.
by nageswaragunupudi
Thu Sep 11, 2008 1:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oCol:bStrData with oBrw filled by array?
Replies: 10
Views: 2062

In TxbrwColumn :

DATA bLClickHeader,; // codeblock to be evaluated when left clicking on the header
bLClickFooter,; // codeblock to be evaluated when left clicking on the footer

Maybe you mean that bLClickData not exist. I suppose this can only be used to select a row or column

Frank
by demont frank
Sat Jun 21, 2008 3:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse simple Leftclick
Replies: 8
Views: 1284
PreviousNext

Return to advanced search