Search found 448 matches: bstrdata

Return to advanced search

Re: Show an Image on xbrowse

... := {|| IIF( oCust:MARRIED = .T., 1, 2 ) } oCol:bAlphaLevel := { || IF( oCust:DELETED(), 60, 255 ) } // alphalevel for bitmaps if deleted oCol:bStrData := { || NIL } oCol:nWidth := 70 regards Uwe :D
by ukoenig
Wed Jan 30, 2019 5:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Show an Image on xbrowse Resolved!!
Replies: 4
Views: 1207

error ORDBAGNAME, con mysql tdolphin y xbrowse

... cExt_Mar), cExt_Mar:Refresh() } oBrw:oFont := oFont2 oBrw:SetDolphin(cExt_Mar,.T.,.T.) oBrw:aCols[1]:cHeader := "Código" oBrw:aCols[1]:bStrData := { || cExt_Mar:cod_mar } oBrw:aCols[1]:nHeadStrAlign := AL_CENTER oBrw:aCols[1]:nDataStrAlign := AL_LEFT //LEFT oBrw:aCols[1]:nWidth := 100 ...
by kpidata
Fri Aug 24, 2018 12:15 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: error ORDBAGNAME, con mysql tdolphin y xbrowse
Replies: 1
Views: 761

Re: Ejemplo de xBrowse

We keep recommending to use command syntax for creating XBrowse, if you want to use advanced features of XBrowse. Use of bStrData was deprecated many years back. For example, please consider this code:         aCol[ 6]:bStrData           := { || IF(oRsCxc:RecordCount() ...
by nageswaragunupudi
Fri Jun 29, 2018 12:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejemplo de xBrowse (Solucionado, thanks Mr. Rao)
Replies: 23
Views: 5290

error en xbrowse mysql, tdolphin

... oBrw, cTab_Insumo) } oBrw:oFont := oFont2 oBrw:SetDolphin(cTab_Insumo,.T.,.T.) oBrw:aCols[1]:cHeader := "Código" oBrw:aCols[1]:bStrData := { || cTab_Insumo:cod_insumo } oBrw:aCols[1]:nHeadStrAlign := AL_CENTER oBrw:aCols[1]:nDataStrAlign := AL_LEFT //LEFT oBrw:aCols[1]:nWidth ...
by kpidata
Tue Jun 19, 2018 5:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: error en xbrowse mysql, tdolphin
Replies: 0
Views: 798

Unicode characters in xBrowse

When showing Unicode characters (2 and 3 superscript) in the xBrowse column, it looks strange. In addition to Unicode characters, some additional character is displayed.

oBrw:bStrData:={||HB_UTF8CHR(HexToNum(aRow[1]))}

Image
by Natter
Wed Jun 13, 2018 1:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unicode characters in xBrowse
Replies: 4
Views: 796

Re: Edición de una celda en xBrowse

Intenta modificando asi:
:aCols[4]:bStrData := {||If( Len( oBrw:aArrayData ) > 0, oBrw:aArrayData[ oBrw:nArrayAt, 4 ], 0 )}
by FranciscoA
Sat Jun 02, 2018 4:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Edición de una celda en xBrowse
Replies: 9
Views: 2136

Re: buttons and datepick on xbrowse

... := '@!' oBrwcp:aCols[10]:nWidth := 16 oBrwcp:aCols[10]:nBtnWidth := 12 oBrwcp:aCols[10]:nEditType := EDIT_GET_BUTTON oBrwcp:aCols[10]:bStrData := {|| ''} oBrwcp:aCols[10]:bEditBlock := {|| Produto_Bonificar_Menos( oBrwcp, aHistoricoComprasProdutos ), NIL} oBrwcp:aCols[10]:bEditWhen ...
by MGA
Wed May 09, 2018 1:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: buttons and datepick on xbrowse
Replies: 14
Views: 3370

Re: xBrowse Report and column pictures

Please try changing bStrData as bEditValue. Kindly note that usage of bStrData was deprecated almost ten years back, i.e., from March 2008. Even earlier, bStrData was supposed to return a formatted string, though some tolerance is built ...
by nageswaragunupudi
Thu Mar 22, 2018 11:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Report and column pictures
Replies: 3
Views: 793

xbrowse y bloqueo encabezado

... oBrw2:SetDolphin(cExt_Rec1,.T.,.T.) // este ordena por numero oBrw2:aCols[1]:cHeader := "Nro."+CRLF+"Recepcion" oBrw2:aCols[1]:bStrData := { || Transform(cExt_Rec1:nro_rec,"999999") } oBrw2:aCols[1]:nHeadStrAlign := AL_CENTER oBrw2:aCols[1]:nDataStrAlign := AL_RIGHT ...
by kpidata
Thu Mar 08, 2018 3:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse y bloqueo encabezado
Replies: 0
Views: 872

Re: xBrowse y Maketotals con condicion

Hola Enrique: Yo lo hago de la siguiente manera y me funciona perfecto: // Col 7 oCol := oBrowse:AddCol() oCol:bStrData := { || Transform( ( oBoleta:caAlias )->PRESTAMO,"999,999,999.99" ) } oCol:cHeader := "Préstamo" oCol:nHeadStrAlign := 2 // Center oCol:nWidth ...
by EBM
Wed Mar 07, 2018 4:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse y Maketotals con condicion
Replies: 5
Views: 1274

xBrowse refresh problem

... := .T. oBrwPed:nHeaderHeight :=30 oBrwPed:nStretchCol := STRETCHCOL_LAST oBrwPed:cAlias := "VENDA" oCol := oBrwPed:AddCol() oCol:bStrData := { || VENDA->NUMERO } oCol:cHeader := "PEDIDO" oCol := oBrwPed:AddCol() oCol:bStrData := { || DTOC(VENDA->DATA)} oCol:cHeader ...
by Wanderson
Sun Mar 04, 2018 7:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse refresh problem
Replies: 2
Views: 697

Re: xbrowse

Y del código que quite deje

WITH OBJECT oBrw:aCols[ 3 ]
:bStrData := {|| cotexto(oRet:concepto) }
:nDataStrAlign := AL_LEFT
:nWidth := 330
END WITH
sin esto no funciona correctamente el campo memo

Luis
by surGom
Sun Feb 25, 2018 3:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse
Replies: 14
Views: 2681

Xbrowse or Report Bug

... @ 0, 05 XBROWSE oBrowse OF oDlg ; SIZE 315,200 PIXEL ; CURSOR oCursorBtn NOBORDER oBrowse:cAlias := "MV" oCol := oBrowse:AddCol() oCol:bStrData := { || Cf(MV->data) } oCol:cHeader := i18n( "Data" ) oCol:nWidth := 80 oCol := oBrowse:AddCol() oCol:bStrData := { || MV->attivita ...
by Silvio.Falconi
Mon Jan 15, 2018 4:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse or Report Bug
Replies: 10
Views: 1786

Re: Rowset X cSeek

my email: nageswaragunupudi [at] gmail [dot] com Some suggestions on creation of XBrowse: Creating columns using :AddCol(), :bStrData(), etc is obsolete and deprecated many years back. This way you will not be able to avail the full power and xbrowse. We recommend creating by command ...
by nageswaragunupudi
Fri Jan 05, 2018 1:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rowset X cSeek
Replies: 7
Views: 2098

Re: Rowset X cSeek

... oBrowse:AddCol() oCol:nWidth := 80 oCol:cHeader := "Dia" oCol:oHeaderFont := oSistema():oFonte4 oCol:nHeadStrAlign := AL_CENTER oCol:bStrData := { || oOcorrencia:dia_ocorrencia } oCol:oDataFont := oSistema():oFonte3 oCol:nDataStrAlign := AL_CENTER oCol:cFooter := "Registros:" ...
by oliveiros junior
Thu Jan 04, 2018 10:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rowset X cSeek
Replies: 7
Views: 2098
PreviousNext

Return to advanced search