Search found 107 matches: autocols

Return to advanced search

Re: XBROWSE, con Get, Combobox y CheckBox, en una misma Columna

... COLSIZES 60,100,310,40; PICTURE "","","",""; ARRAY acDescriptor UPDATE FOOTERS LINES AUTOCOLS CELL olbx101c:nRowHeight := 25 olbx101c:acols[3]:nEditType:= EDIT_GET olbx101c:acols[3]:cEditPicture:="@!" olbx101c:acols[3]:bEditWhen:= ...
by elmoiquique
Thu Mar 28, 2024 9:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE, con Get, Combobox y CheckBox, en una misma Columna
Replies: 10
Views: 2239

Re: XBROWSE with "fullwidth" autocols

Dear Mr. Rao,

thank you for this perfect solution...now the cols are sitting very happily in their places :-)

Thank you again and kind regards
Ruth
by Ruth
Thu Feb 29, 2024 2:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE with "fullwidth" autocols
Replies: 2
Views: 147

Re: XBROWSE with "fullwidth" autocols

Number of columns
Code: Select all  Expand view
? Len( oBrw:aCols )


To fill the width of browse window
Code: Select all  Expand view
oBrw:nStretchCol := STRETCHCOL_WIDEST
by nageswaragunupudi
Thu Feb 29, 2024 12:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE with "fullwidth" autocols
Replies: 2
Views: 147

XBROWSE with "fullwidth" autocols

Dear friends, I am working with XBROWSE and I wonder - is it possible to make the cols adjust to the available width. This is my code...I use AUTOCOLS. So please also allow me a second question. Is there a way to know how many cols are present in the specific XBROWSE? Right now I have a gap and ...
by Ruth
Thu Feb 29, 2024 12:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE with "fullwidth" autocols
Replies: 2
Views: 147

Re: ERROR XBROWSE CON MERGEVERT

... "Mantencion","Servicio Realizado","Detalle/Observaciones"; COLSIZES 150,150,250; ARRAY acDatos UPDATE FOOTERS LINES AUTOCOLS CELL olbx1:l2007:=.t. olbx1:gotop() olbx1:bClrStd:={|| aClrCol [ olbx1:keyno%2+1]} olbx1:bClrSel:={|| { nRGB( 0, 0,255), aGradBarSel } } olbx1:bClrSelFocus ...
by elmoiquique
Mon Aug 28, 2023 3:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ERROR XBROWSE CON MERGEVERT
Replies: 8
Views: 569

Filter y MakeTotals en xBrowse (to Mr. Nagues)

... ; COLSIZES 120,250,80,80,100,85,100,100 ; JUSTIFY AL_CENTER,AL_LEFT,AL_RIGHT,AL_CENTER,AL_RIGHT,AL_RIGHT,AL_RIGHT,AL_RIGHT ; ARRAY COMPONENTES AUTOCOLS FOOTERS LINES CELL OF oDlg oBrw:aFilter :=aDataFilter oBrw:aCols[ 3]:nEditType :=EDIT_GET oBrw:aCols[ 3]:bOnPostEdit :={|oCol,xVal,nKey| If(nKey==VK_RETURN,(COMPONENTES[oBrw:nArrayAt][ ...
by TOTOVIOTTI
Mon Aug 28, 2023 1:34 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Filter y MakeTotals en xBrowse (to Mr. Nagues)
Replies: 0
Views: 190

Mr. Rao, more about xBrowse

...                     END  I am building the browse with the code AUTOCOLS Thank you for your kind help Best regards
by Armando
Mon Aug 21, 2023 4:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao, more about xBrowse
Replies: 11
Views: 556

Re: Función con xbrowse y xedit

Jose, prueba quitar el AUTOCOLS
by cmsoft
Fri Jul 07, 2023 9:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Función con xbrowse y xedit
Replies: 5
Views: 360

Re: XBROWSE FIELDS with Name in Array

... If we want to specify all columns of the DBF, there is no need for our program to read the structure and specify the column names. Use the clause AUTOCOLS instead of COLUMNS .... clause. When we use AUTOCOLS clause, XBrowse itself reads the DBSTRUCT() and builds all the columns suitably, including ...
by nageswaragunupudi
Sat Apr 29, 2023 2:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE FIELDS with Name in Array
Replies: 12
Views: 789

Re: Resta de columnas en xBrwose

when you provide COLUMNS names, please remove AUTOCOLS
by nageswaragunupudi
Tue Nov 29, 2022 3:25 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Resta de columnas en xBrwose
Replies: 14
Views: 946

Re: Newbie Question : XBROWSE

... <cMsg>, <lUpdate>, <cAlias>, <bWhen>, <lDesign>, <bValid> ) --> oBrw   but when search for AUTOCOLS or FASTEDIT i got no Result :( so i search in \INCLUDE and found in XBROWSE.CH but order seems different and does not match above :?   [ ...
by Jimmy
Fri Nov 25, 2022 9:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Newbie Question : XBROWSE
Replies: 17
Views: 1486

Xbrowse and Array

... "PT", "RFID Tag", "CERT Profile" ; FIELDSIZES 200 , 300 , 608 , 100 , 100, 100, 400 , 200 ; OF oDlg ARRAY aItems AUTOCOLS FONT oFont1 Thank you,
by cdmmaui
Tue Feb 08, 2022 7:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse and Array
Replies: 2
Views: 329

How to change the xBrowse-bkstyle at runtime ?

... oBrw1 SIZE 850, 525 PIXEL OF oFld:aDialogs[ 1 ] ; COLSIZES 40, 110, 110, 200, 150, 70, 100, 100, 100, 80, 60, 120, 160 ; DATASOURCE oCustomer AUTOCOLS LINES NOBORDER FONT oFont2 ; BACKGROUND cBackImg STRETCH UPDATE :D // OK see image doesn't work :( // TILED 0 // STRETCH 1 // FILL 2 SetBkMode( ...
by ukoenig
Thu Apr 15, 2021 8:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to change the xBrowse-bkstyle at runtime ?
Replies: 1
Views: 407

Re: xBrowser

... oBrw1 SIZE 850, 525 PIXEL OF oFld:aDialogs[ 1 ] ; COLSIZES 40, 110, 110, 200, 150, 70, 100, 100, 100, 80, 60, 120, 160 ; DATASOURCE oCustomer AUTOCOLS LINES NOBORDER ; BACKGROUND cBackImg FILL :!: the var cBackImg is new defined on folderpage 2 oBrw1:SetBackGround( cBackImg, BCK_FILL ), ; ...
by ukoenig
Wed Apr 14, 2021 6:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowser
Replies: 9
Views: 1093

Re: Editing individual lines

... "Two" ; DIALOGS "One", "Two" ; ID 100 OF oDlg REDEFINE XBROWSE oBrw1 ID 10 OF oFld:aDialogs[ 1 ] ARRAY aDat1 AUTOCOLS REDEFINE XBROWSE oBrw2 ID 10 OF oFld:aDialogs[ 2 ] ARRAY aDat2 AUTOCOLS OBRW1:BCHANGE := {|| oBrw1:aCols[ 2 ]:nEdittype := IIf(obrw1:narrayat==1,EDIT_GET,EDIT_BUTTON), ...
by MGA
Wed Mar 17, 2021 11:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Editing individual lines
Replies: 2
Views: 481
Next

Return to advanced search