Search found 264 matches: addcol

Return to advanced search

Bitmap in xbrowse column

... of a document but which will only be displayed if another file contains the number of that document? How can I do this? The Column: oCol:= Lista0:AddCol() oCol:bStrData := { || ARQBOL->BOLETO} oCol:cHeader := "BOLETO" Thanks.
by wartiaga
Tue Feb 27, 2024 6:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bitmap in xbrowse column
Replies: 0
Views: 59

Re: Add a Checkbox() column

... that permit to select some of the record that I see in ths xbrowse for instance this is the penultimane columnt is define in this way oCol = oBrw:AddCol() oCol:bStrData = { || TRANSFORM( field->imp_eff, "@ZE 999,999,999.99" ) } oCol:cHeader = "TOTALE CLIENTE" oCol:nEditType ...
by MarcoBoschi
Mon Dec 11, 2023 12:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Add a Checkbox() column
Replies: 8
Views: 802

Re: xbrowse and detached variables Mr Rao please Help

Mr. Wilson Your way of creating columns using oBrw:AddCol() #include 'fivewin.ch'function main()    local aKeys   := {'pichincha','internacio'}    local hBancos := { => }    local hRow    local aCols   := {}  ...
by nageswaragunupudi
Fri Aug 26, 2022 2:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse and detached variables Mr Rao please Help
Replies: 14
Views: 916

Re: Concatenar 2 o mas campos en xbrowse

Hola, yo lo hago así.... Es un ejemplo funcionando, con mis datos. oCol:=xbr:AddCol() oCol:cHeader := "Nombre y Apellido" oCol:cFooter := "Nombre y Apellido" oCol:bStrData:= {|| rtrim(lTrim(oClientes:NOM)) + "/"+rtrim(lTrim( oClientes:APE)) ...
by nageswaragunupudi
Thu Aug 04, 2022 4:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Concatenar 2 o mas campos en xbrowse
Replies: 4
Views: 444

Re: Concatenar 2 o mas campos en xbrowse

Hola, yo lo hago así.... Es un ejemplo funcionando, con mis datos. oCol:=xbr:AddCol() oCol:cHeader := "Nombre y Apellido" oCol:cFooter := "Nombre y Apellido" oCol:bStrData:= {|| rtrim(lTrim(oClientes:NOM)) + "/"+rtrim(lTrim( oClientes:APE)) ...
by D.Fernandez
Tue Aug 02, 2022 11:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Concatenar 2 o mas campos en xbrowse
Replies: 4
Views: 444

help with xbrowse

... Lista10:nColDividerStyle := LINESTYLE_BLACK Lista10:nRowDividerStyle := LINESTYLE_BLACK Lista10:CreateFromResource( 109 ) oCol:= Lista10:AddCol() oCol:bStrData := { || PLANO->CODIGO} oCol:cHeader := "CÓDIGO" oCol:= Lista10:AddCol() oCol:bStrData := { || PLANO->DESCRICAO} ...
by wartiaga
Thu Feb 17, 2022 5:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: help with xbrowse
Replies: 0
Views: 256

Re: Columnas dinámicas xbrowse array (Solucionado)

... specifying data source and column data within the xbrowse command and to discontinue the very old method of creating the columns using oBrw:AddCol() and oBrw:Set???() methods. This is a sample program to create the above xbrowse: #include "fivewin.ch"function Main()  ...
by nageswaragunupudi
Thu Mar 11, 2021 4:11 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Columnas dinámicas xbrowse array (Solucionado)
Replies: 8
Views: 1460

Re: xbgetbar

If we use the Rao sample and I wish show two columns @ 110,20 XBROWSE oBrw SIZE -20,-20 PIXEL OF oDlg ; CELL LINES NOBORDER oCol := oBrw:AddCol() oCol:bStrData := { || upper(customer->city) } oCol:cHeader :="City" oCol:nWidth := 250 oCol := oBrw:AddCol() oCol:bStrData := { || ...
by Silvio.Falconi
Thu Nov 05, 2020 5:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbgetbar
Replies: 2
Views: 460

xbgetbar

... with one column ( for a sample only city field) sample : @ 60, 5 XBROWSE oBrowse OF oTabella ; SIZE -5,200 PIXEL FONT oFontTabella oCol := oBrowse:AddCol() oCol:bStrData := { || customer->city } oCol:cHeader :="City" oCol:nWidth := 250 2) is it possible that when I insert a letter ...
by Silvio.Falconi
Thu Nov 05, 2020 4:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbgetbar
Replies: 2
Views: 460

Re: xBrowse anomoly

... of the class. When XBrowse is created without COLUMNS clause: The columns are created separately either with ADD TO oBrw command or with oBrw:AddCol(). In this case, xbrowse can not map the columns to any field of the database. So, xbrowse on its own can not assign any pictures for any column. ...
by nageswaragunupudi
Wed Apr 29, 2020 8:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse anomoly
Replies: 21
Views: 3326

Re: xbrowse con columnas variables

... las tiendas, pero solo obtengo 0,00 en el browse ( las cabeceras si se muestran correctamente ) for i := 1 to len(aTdas) WITH OBJECT oCol := oBrwT:AddCol() :bStrData := { || cValToChar( TEM_T->( FieldGet( i ) ) ) } :cHeader := trim(aTdas[i,1]) END WITH next i favor su ayuda ... Qué versión de ...
by cnavarro
Mon Oct 07, 2019 9:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse con columnas variables
Replies: 9
Views: 1128

Re: xbrowse con columnas variables

... las tiendas, pero solo obtengo 0,00 en el browse ( las cabeceras si se muestran correctamente ) for i := 1 to len(aTdas) WITH OBJECT oCol := oBrwT:AddCol() :bStrData := { || cValToChar( TEM_T->( FieldGet( i ) ) ) } :cHeader := trim(aTdas[i,1]) END WITH next i favor su ayuda ...
by hpoliz
Mon Oct 07, 2019 9:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse con columnas variables
Replies: 9
Views: 1128

Re: xbrowse con columnas variables

Busca en el foro AddCol, es justo lo que necesitas, puedes definir el xbrowse vacio o con algunas columnas y despues ir añadiendo según tus necesidades

viewtopic.php?f=6&t=37456&p=223908#p223906
by cnavarro
Fri Oct 04, 2019 7:35 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse con columnas variables
Replies: 9
Views: 1128

Re: An easy way to make a tree-browse

... //ldbl click tree // dynamic expand sub trees oCol := obrow2:AddCol() oCol:bStrData := {||odb2:descrip} oCol:cHeader := "科目名称" oCol:bEditValue:= {||odb2:descrip} oCol:nEditType:={||if(::ledit.and.!odb2:EOF(),1,0)} ...
by ShumingWang
Wed Jul 31, 2019 1:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: An easy way to make a tree-browse
Replies: 17
Views: 3483

Re: Show an Image on xbrowse

from tDatabase-sample oCol := oBrw:AddCol() oCol:cHeader := "Married" oCol:nHeadStrAlign := AL_CENTER oCol:addbmpfile( c_path1 + "Checkon.bmp" ) // from Disk with path \bitmaps oCol:addbmpfile( c_path1 + "Checkoff.bmp" ...
by ukoenig
Wed Jan 30, 2019 5:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Show an Image on xbrowse Resolved!!
Replies: 4
Views: 1173
Next

Return to advanced search