- Code: Select all Expand view
define window ::Container of owndPrincipal MDICHILD title "Titulo"
define imagelist ::oImageList SIZE 32, 32
define imgbitmap of ::oImageList name "NEW" color nRGB( 255, 0, 255 )
define imgbitmap of ::oImageList name "KEYS" color nRGB( 255, 0, 255 )
define rebar ::oReBar of ::Container
define toolbar ::otoolbar of ::oReBar SIZE 50,58 imagelist ::oImageList
define tbbutton of ::otoolbar action ::First() tooltip "Ir al Primer Registro" prompt "Primer Registro"
define tbbutton of ::otoolbar action ::Container:End() tooltip "Salir del Mantenimiento" prompt "Salir Mantenimiento"
// We set the widths for each toolbar
::otoolbar:nWidth = 300
// Now we insert the toolbars into the rebar
::oReBar:InsertBand( ::otoolbar )
activate window ::Container maximized
::oImageList:End()
Este código es llamado de una opcion principal del menu. Pues cuando aparece la ventana, las imagenes si aparecen, pero cuando el ratón pasa por encima de ella se borran
¿Alguna solución?