Tengo el siguiente problema, cuando minimizo la ventana pricipal que tiene una ReBar sucede lo siguiente:
Esta imagen es cuando se inicia la áplicación.
[/img]
y esta despues de minimizar la aplicación.
[/img]
Como veran hace un espacio entre la ReBar y el Browse como si hubiera otra Rebar insertada.
Este es el codigo:
Code: Select all
DEFINE IMAGELIST ::oImageList SIZE 32, 32
::oImageList:AddMasked( TBitmap():Define( "Capturas",, ::oWndMain ), nRGB( 255, 0, 255 ) )
::oImageList:AddMasked( TBitmap():Define( "Bus",, ::oWndMain ), nRGB( 255, 0, 255 ) )
::oImageList:AddMasked( TBitmap():Define( "Rutas",, ::oWndMain ), nRGB( 255, 0, 255 ) )
DEFINE IMAGELIST ::oImageList2 SIZE 32, 32
::oImageList2:AddMasked( TBitmap():Define( "Index",, ::oWndMain ), nRGB( 255, 0, 255 ) )
::oImageList2:AddMasked( TBitmap():Define( "Import",, ::oWndMain ), nRGB( 255, 0, 255 ) )
DEFINE IMAGELIST ::oImageList3 SIZE 32, 32
::oImageList3:AddMasked( TBitmap():Define( "Respaldo",, ::oWndMain ), nRGB( 255, 0, 255 ) )
::oImageList3:AddMasked( TBitmap():Define( "Restaura",, ::oWndMain ), nRGB( 255, 0, 255 ) )
DEFINE IMAGELIST ::oImageList4 SIZE 32, 32
::oImageList4:AddMasked( TBitmap():Define( "Salir",, ::oWndMain ), nRGB( 255, 0, 255 ) )
::oReBar := TReBar():New( ::oWndMain )
DEFINE TOOLBAR ::oBar OF ::oReBar SIZE 40, 40 IMAGELIST ::oImageList BALLOON
DEFINE TBBUTTON OF ::oBar ;
ACTION Captura() ;
TOOLTIP i18n( "Capturas" ) ;
MESSAGE i18n( "Gestión de Capturas de Ingresos y Egresos." )
DEFINE TBBUTTON OF ::oBar ;
ACTION Unidades() ;
TOOLTIP i18n( "Unidades" ) ;
MESSAGE i18n( "Flotilla de Unidades." )
DEFINE TBBUTTON OF ::oBar ;
ACTION Rutas() ;
TOOLTIP i18n( "Rutas" ) ;
MESSAGE i18n( "Catálago de Rutas." )
DEFINE TOOLBAR ::oBar2 OF ::oReBar SIZE 40, 40 IMAGELIST ::oImageList2 BALLOON
DEFINE TBBUTTON OF ::oBar2 ;
ACTION Indices(.F., cEmpresa) ;
TOOLTIP i18n( "Verificar Archivos" ) ;
MESSAGE i18n( "Verificación de los Archivos del Sistema." )
DEFINE TBBUTTON OF ::oBar2 ;
ACTION ImporDatos() ;
TOOLTIP i18n( "Importaciones de Datos" ) ;
MESSAGE i18n( "Importación de Datos Externos." )
DEFINE TOOLBAR ::oBar3 OF ::oReBar SIZE 40, 40 IMAGELIST ::oImageList3 BALLOON
DEFINE TBBUTTON OF ::oBar3 ;
ACTION Respaldo() ;
TOOLTIP i18n( "Respaldo de Archivos" ) ;
MESSAGE i18n( "Respaldo de los Archivos del Sistema." )
DEFINE TBBUTTON OF ::oBar3 ;
TOOLTIP i18n(AnsiToOem("Restauración de Archivos")
MESSAGE i18n( "Restaurar un Respaldo de los Archivos del Sistema." )
DEFINE TOOLBAR ::oBar4 OF ::oReBar SIZE 40, 40 IMAGELIST ::oImageList4 BALLOON
DEFINE TBBUTTON OF ::oBar4 ;
ACTION ::ExitFromBtn() ;
TOOLTIP i18n( "Salir del Sistema" ) ;
MESSAGE i18n( "Finalizar el uso del Sistema." )
::oBar:nWidth := 110
::oBar2:nWidth := 80
::oBar3:nWidth := 80
::oBar4:nWidth := 330
::oReBar:InsertBand( ::oBar )
::oReBar:InsertBand( ::oBar2 )
::oReBar:InsertBand( ::oBar3 )
::oReBar:InsertBand( ::oBar4 )
Saludos
Marco A. Delgado.