Search found 37 matches: colum

Return to advanced search

Re: total in xbrowse

Again xbrowse,
I would like to put a value (total column 3 / total colum 5) to the bottom of column "kgtota" an not the total of "kgtota"
Thanks
by damianodec
Tue Mar 05, 2013 2:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: total in xbrowse
Replies: 26
Views: 4810

TsBrowse 9.0, M. Mercado

... Hago esto: @ nRenBrw,00 BROWSE oBROWSE SIZE SIZE_LON,SIZE_ANC; FONT oFontb UPDATE PIXEL OF oVENTANA; COLOR COLOR_NEGRO,COLOR_GRIS for i:=1 to len(COLUM) ADD COLUMN TO BROWSE oBROWSE; TITLE HEAD_CAM[i]; DATA COLU_BLO(i); SIZE SIZE_CAM[i]; ALIGN JUST_FIL[i], DT_VERT; EDITABLE MOVE DT_MOVE_RIGHT ...
by noe aburto
Tue Jul 03, 2012 3:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TsBrowse 9.0, M. Mercado
Replies: 1
Views: 814

TsBrowse 9.0, M. Mercado

... Hago esto: @ nRenBrw,00 BROWSE oBROWSE SIZE SIZE_LON,SIZE_ANC; FONT oFontb UPDATE PIXEL OF oVENTANA; COLOR COLOR_NEGRO,COLOR_GRIS for i:=1 to len(COLUM) ADD COLUMN TO BROWSE oBROWSE; TITLE HEAD_CAM[i]; DATA COLU_BLO(i); SIZE SIZE_CAM[i]; ALIGN JUST_FIL[i], DT_VERT; EDITABLE MOVE DT_MOVE_RIGHT ...
by noe aburto
Tue Jul 03, 2012 3:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TsBrowse 9.0, M. Mercado
Replies: 0
Views: 546

Re: XBROWSE RESIZE colum problem

Hi And thanks for reply. That is not my problem. XBROWSE is created with data received from SQL SELECT statement, so i dont know the columns or their sizes. if some column size is the same or large than xbrowse width, user CANT catch right corner of the column and drag it to the left to make smaller...
by avista
Wed Jun 20, 2012 7:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE RESIZE colum problem
Replies: 2
Views: 598

Re: XBROWSE RESIZE colum problem

You can adjust Columns to any size You like This sample would adjust all Columns to width 30 aeval( oBrw:aCols, { |oCols| oCols:nWidth := 30 } ) or a defined Col : oBrw:aCols[ 1 ]:addbmpfile( "..\bitmaps\16x16\adddbf.bmp" ) oBrw:aCols[ 1 ]:lBtnTransparent := .t. oBrw:aCols[ 1 ]:nBtnBmp := ...
by ukoenig
Mon Jun 18, 2012 12:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE RESIZE colum problem
Replies: 2
Views: 598

XBROWSE RESIZE colum problem

Hi all
Please how to resize comumn in xbrowse if the column size is the same or large than xbrowse width
so it is visible only that column in that moment.
Best regards,
by avista
Mon Jun 18, 2012 7:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE RESIZE colum problem
Replies: 2
Views: 598

Re: New FWH 11.07

... remain in in folder 1 I modify the foldxbrw.prg in samples adding : oBrw1:aCols[ 2 ]:bEditBlock := { || oFld:SetOption(2) } After click on the colum and switch in folder 2 try the arrows key , doesn't work because the focus remain on folder . Regards Maurizio #include "FiveWin.ch" ...
by Maurizio
Fri Aug 05, 2011 8:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 11.07
Replies: 79
Views: 12356

CheckBox en Tsbrowse6.0 y Tsbrowse9.0

... la version 9.0 si edito pero al visualizar mi sbrowse no me muestra nada en mis columnas con checkbox, el codi es /// version 6 for i:=1 to len(COLUM) if _lCHECK(i) ADD COLUMN TO BROWSE oBROWSE; TITLE HEAD_CAM[i]; DATA COLU_BLO(i); SIZE ALTO_CELDA CHECKBOX; COLOR COLU_CLR(i); ALIGN DT_CENTER, ...
by noe aburto
Wed Jul 13, 2011 6:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CheckBox en Tsbrowse6.0 y Tsbrowse9.0
Replies: 0
Views: 362

CheckBox en Tsbrowse6.0 y Tsbrowse9.0

... la version 9.0 si edito pero al visualizar mi sbrowse no me muestra nada en mis columnas con checkbox, el codi es /// version 6 for i:=1 to len(COLUM) if _lCHECK(i) ADD COLUMN TO BROWSE oBROWSE; TITLE HEAD_CAM[i]; DATA COLU_BLO(i); SIZE ALTO_CELDA CHECKBOX; COLOR COLU_CLR(i); ALIGN DT_CENTER, ...
by noe aburto
Wed Jul 13, 2011 6:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CheckBox en Tsbrowse6.0 y Tsbrowse9.0
Replies: 0
Views: 292

Xbrowse , autosort

Hello, Clicking on a header , the array is sorted with the data from this colum. In some cases i want to add a second key , or column , like we can do in a index expression. I tryed to add a new data to TXBrwColumn (bOrder) , but it seems to be too complicated. ...
by Frank Demont
Thu Feb 10, 2011 10:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse , autosort
Replies: 1
Views: 351

Xbrowse , autosort

Hello, Clicking on a header , the array is sorted with the data from this colum. In some cases i want to add a second key , or column , like we can do in a index expression. I tryed to add a new data to TXBrwColumn (bOrder) , but it seems to be too complicated. ...
by Frank Demont
Thu Feb 10, 2011 10:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse , autosort
Replies: 2
Views: 697

Re: xBrowse and datas

... oArqEmp, { "SIGLA", "FANTASIA", "CIDADE", "UF" }, .t. ) When using the aCols parameter, how do you define colum titles that are different than the fieldnames. I'm guessing we have to assign them to each column? oBrw:aCols[ 2 ]:cHeader:="Whatever" ...
by James Bott
Sat Aug 14, 2010 12:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse and datas
Replies: 5
Views: 884

FastReport,The most best report engine for FWH,Harbour!

... -> MyArray[6] (4)EvalMacro('var1) --> &var1 5. print page 1/3 ,2/3, 3/3 , in .fr3 [#page]['/'][#totalpage] 6. Auto split too long text colum into 2,3,... lines in .fr3,(1)masterdata1AllowSplit Y,Strethed Y, (2)masterdata exvery cell StresMode Y Line____name_____addrs________________birthday ...
by ShumingWang
Sat Aug 07, 2010 7:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FastReport,The most best report engine for FWH,Harbour!
Replies: 4
Views: 2177

xbrowse change bitmap in execution

Hi all, I have a xbrowse, in firt colum i have a bitmap oCol := oBrw:AddCol() oCol:AddResource("CHECKOFF") oCol:AddResource("CHECKON") oCol:bBmpData := { || 2, 1 } oBrw:bKeyDown := {|nKey| Seleg(nkey)} In Seleg() i have ...
by Wanderson
Tue Jun 22, 2010 7:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse change bitmap in execution
Replies: 5
Views: 992

Making a config dialog

I saved on a file INI the state of Xbrowse. for sample I have a dbf with 4 fields First Last Street City for each colums I save the state on file INI: the number of column the size of column the name of header and the logic variable if itis shoed or not look this please CuState=21;1:150:First:S;2:150:Last:S;3:150:Street:S;4:150:City:S ...
by Silvio
Sun Jan 04, 2009 4:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Making a config dialog
Replies: 0
Views: 261
PreviousNext

Return to advanced search