Search found 145 matches: nrowheight

Return to advanced search

Consulta color en xbrowse

... FOOTERS LINES CELL NOBORDER ; BACKGROUND aQueGrad VERTICAL // COLSIZES 90,50,120,60,120,40,40,100,60,100 OF oDlg ; oBrw:nStretchCol := 2 oBrw:nRowHeight := 30 oBrw:nMarqueeStyle := 4 // anulo el doble color d los registros oBrw:lContrastClr := .f. oBrw:lHScroll := .f. oBrw:nHeadStrAligns := ...
by José Camilo
Wed Oct 30, 2024 11:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta color en xbrowse
Replies: 1
Views: 97

Re: FWH64 : ERROR SE SALE DEL SISTEMA

... @0,0 XBROWSE oBrw OF aWnd ; DATASOURCE oQry ; COLUMNS aCols ; LINES CELL FASTEDIT PIXEL WITH OBJECT oBrw :bClrRowFocus := oBrw:bClrSelFocus :nRowHeight := 25 :nHeaderLines := 4 :nHeaderHeight := 60 :oHeaderFonts := oFont :nFooterHeight := 20 :nFooterLines := 2 :oFooterFonts := eFont :nFreeze ...
by CARLOS ATUNCAR
Mon Aug 19, 2024 3:30 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWH64 : ERROR SE SALE DEL SISTEMA
Replies: 33
Views: 4357

Re: how to change the size of an xbrowse in runtime

It is :

:nRowHeight:= if(hBrw["RIJHOOGTE"]>0,hBrw["RIJHOOGTE"],h_system["BRW_RIJHOOGTE"])
by Marc Venken
Thu May 02, 2024 7:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 1457

Error Fwh 24.02 con XBROWSE

... OF oWnd ; DATASOURCE oQry ; COLUMNS aCols ; LINES CELL AUTOSORT SIZE -10,-10 PIXEL FONT oFont WITH OBJECT oBrw :bClrRowFocus := oBrw:bClrSelFocus :nRowHeight := 25 :nHeaderLines := 4 :nHeaderHeight := 70 :oHeaderFonts := oFont :nFooterHeight := 20 :nFooterLines := 2 :nStretchCol := 3 :lAllowColHiding ...
by CARLOS ATUNCAR
Mon Apr 08, 2024 6:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error Fwh 24.02 con XBROWSE
Replies: 0
Views: 489

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

... 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:= { || olbx101c:aArrayData[olbx101c:nArrayAt][5]="C" ...
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: 3449

Alto de linea en LISTBOX

Buenas noches.
Necesito cambiar el alto de la linea o registro que muestra un listbox a lo que trae por defecto.
lo que en un xbrowse se haria asi:

oBrw:nStretchCol := 2
oBrw:nRowHeight := 30
oBrw:nMarqueeStyle := 4


Como se puede hacer en listbox?

Gracias
by José Camilo
Mon Mar 25, 2024 5:33 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Alto de linea en LISTBOX
Replies: 5
Views: 1359

Problemas con comportamiento de XBrowse.

... JUSTIFY .f.,.f.,.t.,.t.,,.t.,.t.,,.t.,.t.,.f. ; ALIAS cAlias FOOTERS LINES CELL NOBORDER ; BACKGROUND aQueGrad VERTICAL oBrw:nStretchCol := 2 oBrw:nRowHeight := 30 oBrw:nMarqueeStyle := 4 oBrw:nRowDividerStyle := 2 // color gris y fino la division de columnas oBrw:nColDividerStyle := 0 // color ...
by José Camilo
Fri Mar 15, 2024 2:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas con comportamiento de XBrowse.
Replies: 1
Views: 598

Re: How to put a horizontal scroll bar at the bottom of xBrowse

Hey Rick,

Do you want a extra hor.scroll bar ? Not seen on the forum yet.

For the standart :

oBrw:nRowHeight := 40 // and use a larger font
oBrw:lHScroll := .T.

but I think you are looking for something else ...
by Marc Venken
Tue Mar 05, 2024 7:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to put a horizontal scroll bar at the bottom of xBrowse
Replies: 6
Views: 869

Re: ancho del setgroup?

WITH OBJECT oBrw
:nRowHeight := 25
:nHeaderLines := 3
END
by CARLOS ATUNCAR
Mon Feb 26, 2024 2:55 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ancho del setgroup?
Replies: 4
Views: 602

Ayuda, busqueda incremental

... dblCLICK ( lsavek := .t., oDlgSTK:End() ) obrw:bKeyDown = { | nKey, nCol, nFlags | iif( nKey = K_ENTER, ( lsavek := .t., oDlgSTK:End() ), ) } oBrw:nRowHeight := 35 REDEFINE BTNBMP 2007 prompt HB_UTF8CHR( 57611 ) + " Confirma " font oSegoe ID 120 OF oDlgStk ACTION ( lsave := .t., oDlgSTK:End() ...
by jpcavagnaro
Wed Nov 22, 2023 11:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ayuda, busqueda incremental
Replies: 1
Views: 405

evitar que se active columna con xbrowse al dar un click

... el foco oBrw:lColDividerComplete := (.t.) // (.T.) Mantiene siempre llena la pantalla oBrw:nHeaderHeight := 35 // Altura de los encabezados oBrw:nRowHeight := 25 // Altura del renglón oBrw:nHeaderLines := 3 // Número de líneas de encabezados oBrw:nDataLines := 2 // Número de líneas de detalle ...
by kpidata
Fri Sep 01, 2023 7:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inhabilitar columna en xBrowse - Disable column in xBrowse
Replies: 8
Views: 1598

Re: ERROR XBROWSE CON MERGEVERT

... olbx1:nRowDividerStyle := LINESTYLE_BLACK olbx1:lallowrowsizing :=.f. olbx1:setcolor(rgb(0,0,0),rgb(255,255,206)) olbx1:nRowHeight := 27 oLbx1:acols[1]:lMergevert:=.t. Imagen https://drive.google.com/file/d/1BZfNI0KHL-ax-1n5aYod_eDHdac1lvnR/view?usp=drive_link ...
by elmoiquique
Mon Aug 28, 2023 3:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ERROR XBROWSE CON MERGEVERT
Replies: 8
Views: 928

Re: Consulta sobre centrar un dialogo.

... ; JUSTIFY .T.,.f.,.f.,.t. ; ALIAS cAlias AUTOSORT FOOTERS LINES CELL NOBORDER ; Font oFont; BACKGROUND aGrad VERTICAL oBrw:nStretchCol := 2 oBrw:nRowHeight := 30 oBrw:nMarqueeStyle := 4 // anulo el doble color d los registros oBrw:lContrastClr := .f. // quitar barra horizontal oBrw:lHScroll := ...
by José Camilo
Tue Aug 01, 2023 1:51 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta sobre centrar un dialogo.
Replies: 9
Views: 973

Re: change the ndatalines (xbrowse) on lines

... of the browse. i.e., during runtime, it is never used and changing the values does not do anything. During runtime, you can change the data oBrw:nRowHeight. thanks run correctly this is only a test one row https://i.postimg.cc/tgNsGyTP/onerow.png two rows https://i.postimg.cc/3xgR2726/two-rows.png
by Silvio.Falconi
Sat May 13, 2023 9:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: change the ndatalines (xbrowse) on line - RESOLVED -
Replies: 4
Views: 356

Re: change the ndatalines (xbrowse) on lines

nDataLines is used by xbrowse only while creating the browse for the first time for calculating the row height. After creation of the browse. i.e., during runtime, it is never used and changing the values does not do anything.
During runtime, you can change the data oBrw:nRowHeight.
by nageswaragunupudi
Sat May 13, 2023 1:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: change the ndatalines (xbrowse) on line - RESOLVED -
Replies: 4
Views: 356
Next

Return to advanced search