ERROR XBROWSE CON MERGEVERT

Post Reply
elmoiquique
Posts: 323
Joined: Wed May 16, 2007 9:40 pm
Location: Region de Ñuble, Chile

ERROR XBROWSE CON MERGEVERT

Post by elmoiquique »

Al usar el lmergevert me da este problema de despliege, al darle click sobre la pantalla se corrige el error, o existe
alguna solucion

https://drive.google.com/file/d/1OgBshe ... sp=sharing
Last edited by elmoiquique on Wed Aug 23, 2023 3:45 pm, edited 1 time in total.
Fivewin-Xharbour 24.09, Iquique, Chile
User avatar
Antonio Linares
Site Admin
Posts: 42268
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: ERROR XBROWSE CON MERGEVERT

Post by Antonio Linares »

No se ve la imagen
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
karinha
Posts: 7885
Joined: Tue Dec 20, 2005 7:36 pm
Location: São Paulo - Brasil
Contact:

Re: ERROR XBROWSE CON MERGEVERT

Post by karinha »

João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
elmoiquique
Posts: 323
Joined: Wed May 16, 2007 9:40 pm
Location: Region de Ñuble, Chile

Re: ERROR XBROWSE CON MERGEVERT

Post by elmoiquique »

Eso es lo que intento, pero se me juntan los datos

https://drive.google.com/file/d/1OgBshe ... sp=sharing
Fivewin-Xharbour 24.09, Iquique, Chile
elmoiquique
Posts: 323
Joined: Wed May 16, 2007 9:40 pm
Location: Region de Ñuble, Chile

Re: ERROR XBROWSE CON MERGEVERT

Post by elmoiquique »

Antonio Linares wrote:No se ve la imagen
disculpa no me habia dado cuenta, pero ahi esta, se me juntan los datos, cuando uno le hace el click encima se ordenan ...

https://drive.google.com/file/d/1OgBshe ... VVD8a/view
Fivewin-Xharbour 24.09, Iquique, Chile
elmoiquique
Posts: 323
Joined: Wed May 16, 2007 9:40 pm
Location: Region de Ñuble, Chile

Re: ERROR XBROWSE CON MERGEVERT

Post by elmoiquique »

Hola Antonio,,, he buscado la solucion de distintas formas, y me he dado cuenta que si se vizualizan 4 registro en pantalla el merge funciona bien,,, pasado esa cantidad se superpone uno sobre otro,, he buscado la solucion pero aun no doy con ella, no se cual sera el problema
Fivewin-Xharbour 24.09, Iquique, Chile
User avatar
Antonio Linares
Site Admin
Posts: 42268
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: ERROR XBROWSE CON MERGEVERT

Post by Antonio Linares »

Mr. Rao lo está revisando y te contestará lo antes posible :-)
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
nageswaragunupudi
Posts: 10691
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Contact:

Re: ERROR XBROWSE CON MERGEVERT

Post by nageswaragunupudi »

We can help you better if you can provide a sample code using any of the tables in fwh\samples folder

Here is a working sample

Code: Select all | Expand

   USE CUSTOMER NEW SHARED VIA "DBFCDX"
   SET ORDER TO TAG STATE
   GO TOP
   XBROWSER "CUSTOMER" COLUMNS "STATE","CITY","FIRST" SETUP (;
      oBrw:State:lMergeVert := .t. )
 
Make sue the data is sorted on the first column

Image
Regards

G. N. Rao.
Hyderabad, India
elmoiquique
Posts: 323
Joined: Wed May 16, 2007 9:40 pm
Location: Region de Ñuble, Chile

Re: ERROR XBROWSE CON MERGEVERT

Post by elmoiquique »

Mr. Rao

Gracias por contestar,,, pero el problema persiste... solo haciendo doble click sobre la imagen se arregla el problema

REDEFINE XBROWSE oLbx1 ID 4007 OF oDlg;
COLUMNS 1,2,3;
HEADERS "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 := { || { CLR_BLACK, aGradBarSelFocus } }
olbx1:nColDividerStyle := LINESTYLE_BLACK
olbx1:nMarqueeStyle := 3
olbx1:lcoldividercomplete:=.f.
olbx1:acols[1]:lAllowsizing:=.f.
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/1BZfNI0 ... drive_link

Video
https://drive.google.com/file/d/1G131Qd ... drive_link
Fivewin-Xharbour 24.09, Iquique, Chile
Post Reply