Page 1 of 1

ERROR EN XBROWSE 17.09

PostPosted: Mon Oct 16, 2017 12:23 pm
by Ariel
Hola,
el nuevo código usa simpre ALLTRIM () y a veces se necesitan los espacio de la izquierda

the new code uses simpre ALLTRIM () and sometimes you need the left space.


Current code
Code: Select all  Expand view

METHOD PaintCell() LINE 12574
....
   //----------------------------------------------------------------------------//
   // READ DATA
   //----------------------------------------------------------------------------//
   cData    := AllTrim( cValToChar( ::StrData ) )
   if isrtf( cData )
      cData := "<RichText>"
   elseif isGtf( cData )
      cData := GtfToTxt( cData )
   endif
 


Solution, old code:
Code: Select all  Expand view

METHOD PaintCell() LINE 12574
....
   //----------------------------------------------------------------------------//
   // READ DATA
   //----------------------------------------------------------------------------//
   // New code always uses ALLTRIM (), old code no.
   if ::bStrData != nil //.and. !::hChecked
      cData := Eval( ::bStrData )
      if ValType( cData ) != 'C'
         cData := cValToChar( cData )
      endif
      if ! Empty( ::nDataStrAlign )
         cData := AllTrim( cData )
      endif
      if isrtf( cData )
         cData := "<RichText>"
      elseif isGtf( cData )
         cData := GtfToTxt( cData )
      endif
   else
      cData := ""
   endif

 


Saludos.

Re: ERROR EN XBROWSE 17.09

PostPosted: Mon Oct 23, 2017 2:02 pm
by Ariel
Alguna nov???

Re: ERROR EN XBROWSE 17.09

PostPosted: Tue Oct 24, 2017 8:07 am
by Antonio Linares
Lo estamos revisando, gracias

Re: ERROR EN XBROWSE 17.09

PostPosted: Fri Nov 03, 2017 2:34 am
by nageswaragunupudi
Implemented in 17.10 to be released