Search found 35 matches: bdata

Searched query: bdata

by Antonio Linares
Fri Jan 17, 2025 10:33 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Using new Class TDeepSeek for documenting
Replies: 29
Views: 4838

Using new Class TDeepSeek for documenting

... selection.

7. **`bKeyCount`**
- **Type**: Block (Code Block)
- **Description**: Code block that returns the number of items in the list.

8. **`bData`**
- **Type**: Block (Code Block)
- **Description**: Code block that retrieves data for a specific item.

9. **`lSBVisible`**
- **Type ...
by Silvio.Falconi
Thu May 11, 2023 6:22 am
Forum: FiveWin for Harbour/xHarbour
Topic: Effect Pjama on Treport ( from Xbrowse)
Replies: 5
Views: 571

Re: Effect Pjama on Treport ( from Xbrowse)

... parameter in the function MakeRepCol( oRep, aCols[ nFor ], lShadow )

then add on makeRepcol line 11672

oCol := RptAddColumn( aHeader, nil ,;
{ bData }, nSize, nil ,;
nil, nil, nil ,;
"RIGHT", lShadow , .F., nil, ;
nil, nil, ;
nil, nil, nil, nil, nil, ;
nil, nil, nil, nil, nil, nil, ;
nil ...
by oliveiros junior
Mon Sep 17, 2018 8:34 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Imagen condicional en Xbrowse
Replies: 9
Views: 2728

Re: Imagen condicional en Xbrowse

Olá,

coloque também :bData := { || "" }, já aconteceu isso comigo e resolveu assim.

Att.,

Oliveiros Junior
by goosfancito
Wed Feb 26, 2014 10:23 am
Forum: FiveWin para Harbour/xHarbour
Topic: dolphin y xbrowse
Replies: 8
Views: 1109

Re: dolphin y xbrowse

FranciscoA wrote:No uso TDolphin, pero me da la impresion que aqui:
:acols[1]:bData:= { || oQuery:ID_PROG} <--------------------- esto esta mal.

...deberia ser: acols[1]:bEditValue:= { || oQuery:ID_PROG} o acols[1]:bStrData:= { || oQuery:ID_PROG}
Saludos.


gracias.
by FranciscoA
Tue Feb 25, 2014 8:02 pm
Forum: FiveWin para Harbour/xHarbour
Topic: dolphin y xbrowse
Replies: 8
Views: 1109

Re: dolphin y xbrowse

No uso TDolphin, pero me da la impresion que aqui:
:acols[1]:bData:= { || oQuery:ID_PROG} <--------------------- esto esta mal.

...deberia ser: acols[1]:bEditValue:= { || oQuery:ID_PROG} o acols[1]:bStrData:= { || oQuery:ID_PROG}
Saludos.
by Franklin Demont
Sun Feb 17, 2013 8:57 am
Forum: FiveWin for Harbour/xHarbour
Topic: oBrw:Report , error on memo field
Replies: 3
Views: 765

oBrw:Report , error on memo field

... M"&nbsp; oCol:bStrData := &#123;||IIF&#40;VALTYPE&#40;oCol:Value&#41;=="A" , "{...}" , oCol:Value&#41;&#125;END&nbsp;

In MakeRepCol :

if ( bData := oXCol:bEditValue ) == nil
bData := oXCol:bStrData
else
cPic := oXCol:cEditPicture
endif

Maybe is better :
if ( bData := oXCol:bStrData ...
by goosfancito
Fri May 04, 2012 10:29 am
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse. bdata y array
Replies: 4
Views: 918

Re: xbrowse. bdata y array

ok. try.
by nageswaragunupudi
Fri May 04, 2012 4:49 am
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse. bdata y array
Replies: 4
Views: 918

Re: xbrowse. bdata y array

goosfancito wrote:bedit no es para cuando se quiere editar la celda?

No
bEditValue is the codeblock for the value to be shown.

Note: Use of bStrData is deprecated years ago. Instead we should use bEditValue.
bEditValue can also be a SetGet block.
by goosfancito
Fri May 04, 2012 12:01 am
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse. bdata y array
Replies: 4
Views: 918

Re: xbrowse. bdata y array

bedit no es para cuando se quiere editar la celda?
by nageswaragunupudi
Thu May 03, 2012 11:54 pm
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse. bdata y array
Replies: 4
Views: 918

Re: xbrowse. bdata y array

oBrw:aCols[6]:bEditValue
by goosfancito
Thu May 03, 2012 3:48 pm
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse. bdata y array
Replies: 4
Views: 918

xbrowse. bdata y array

hola.

Quiero cambiar un valor en un xbrowse; intente esto y no da, como lo hago?

Code: Select all | Expand

        oBrw:aCols[6]:bData    :=  { || IF (aDatos[ oBrw:Keyno()]== "21", "Salio", "Entro")}


Gracias.
by pgfdz
Thu Jan 13, 2011 7:29 pm
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: Añadir datos a un TableView
Replies: 2
Views: 1588

Añadir datos a un TableView

Hola
No se como añadir filas a un TableView
He puesto aadd(oBrw:bData, "Ruta " + Str(len(oBrw:bData)+1))
pero se me queda cuajao
by mastintin
Sun Nov 07, 2010 7:50 pm
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: he conseguido un iphone
Replies: 644
Views: 185388

Re: he conseguido un iphone

Añadida opcion grouped al tableview , autodetecion de un array ( si bdata es un array se detecta) .
Image
by Maurizio
Wed Mar 24, 2010 1:03 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse and bKeyDown
Replies: 4
Views: 787

xBrowse and bKeyDown

In the old browse ( in a edit cell ) to have the value of the GET I used

oBrw:bKeyDown = { | nKey |msgvalue(oBrw)}

Function MsgValue(oBrw)

Val := Eval(oBrw:aColumns[1]:bData)

msginfo(val)

What I can use th have the same value in xBrowse bKeyDown ?

Regards Maurizio
by Jonathan Hodder
Tue Aug 25, 2009 11:15 pm
Forum: FiveWin for Harbour/xHarbour
Topic: tcbrowse row color
Replies: 6
Views: 1040

Re: tcbrowse row color

... nJ ], -1), ;
if( cPicture == nil, ;
If( lBitMap, If( ! Empty( ::aBitmaps ),;
::aBitmaps[ uData ], uData ), ;
cValToChar( Eval( oColumn:bData ) ) ), ;
Transform( uData, cPicture ) ), ;
oColumn:nAlign, ;
nClrFore, ;
If( lFocused .or. lNoLite,;
nClrBack,;
If( ::lCellStyle, If( nJ ...