Hi !
Is it possible to show several vertically positioned icons (one above the other) in the xBrowse cell ?
Hi !
Is it possible to show several vertically positioned icons (one above the other) in the xBrowse cell ?
REDEFINE XBROWSE oBrw DATASOURCE oQryBrw;
COLUMNS "imagen1","imagen2","Numero","Nombre";
HEADERS "","","Numero","Nombre",;
SIZES 30,30,50,300;
ID 111 OF oDlg
oBrw:aCols[1]:bStrData := {|| ""}
oBrw:aCols[2]:bStrData := {|| ""}
oBrw:aCols[1]:AddBitMap( 'BITMAPS\IMPOR.BMP' )
oBrw:aCols[1]:AddBitMap( 'BITMAPS\PEND.BMP' )
oBrw:aCols[2]:AddBitMap( 'BITMAPS\VISADA.BMP' )
oBrw:aCols[2]:AddBitMap( 'BITMAPS\DISPO.BMP' )
oBrw:aCols[1]:SetColsAsRows( { 1,2} ) //Junto las columnas, por lo que te quedará uno debajo del otro
///... El resto de tu logicaThanks, but that's not exactly what I need.
Dear Natter,
Could you please post a screenshot of what you are getting and another one of what you would like to get ?
Thank you