Hi Jose,

Could you post a working example for this problem,
so that I can compare the behavior to C5.3.

Brgds,
Viktor

On 2008.01.04., at 16:30, Jose Miguel wrote:

Hola/Hello

Cuando presiono un numero en el menu se selecciona siempre el primer item, alguna solucion?
---------------------------------
When I press I number in menu always selects the first item, some solution?

Este el el codigo/this is the code

      // TopBar() creates the menu at the very top of the screen
oTopBar := TopBar( 2, 0, 79)
oTopBar:ColorSpec :="b/w,gr+/rb,r/w,w+/rb,n+/w,w+/b"

// Create a new popup menu named FILE and add it to the TopBar object
oPopUpA:= PopUp()
oPopUpA:ColorSpec:= "b/w,gr+/rb,r/w,w+/rb,n+/w,w+/b"
oTopBar:AddItem( MenuItem ( "&Remesas",oPopUpA) )

      // Add some menu items to the newly created File popup
oItem :=MenuItem( "&1-Altas/modif. Remesas " ,{|| REMALT() }, 49,"Altas y modificacion de Remesas", 11)
   oPopUpA:AddItem( oItem)
oItem :=MenuItem( "&2-Consultar Remesas " ,{|| REMCON() }, 50,"Consulta de Remesas", 12)
   oPopUpA:AddItem( oItem)
oItem :=MenuItem( "&3-Apertura/Cambio Ejercicio " ,{|| REMEJE() }, 51,"Aperturar o cambiar de ejerccio", 13)
   oPopUpA:AddItem( oItem)
   oPopUpA:AddItem( MenuItem( MENU_SEPARATOR ) )
oItem :=MenuItem( "&4-TERMINAR " , {|| .t. }, 52,"Salir del programa", 999)
   oPopUpA:AddItem( oItem)

   // Return our TopBar object back to MENU_Test()
   return ( oTopBar)




Ejemplos y programas para MiniGUI Extended
http://www.gateos.com/misdoc/programas/programas.html



Yahoo! Encuentros
Ahora encontrar pareja es mucho más fácil, probá el nuevo Yahoo! Encuentros.
Visitá 
http://yahoo.cupidovirtual.com/servlet/NewRegistration_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to