é possível expandir o mesmo nivel de menu/submenu após executar a ação ?
após executar a ação, o menu é apagado da tela, e o usuário é forçado a escolher de novo no primeiro nível do menu
eu quero que o menu se expanda automaticamente no mesmo nivel
vejam o codigo:
- Code: Select all Expand view RUN
MENU oMenu
MENUITEM "Customers"
MENU
MENUITEM "Add New Customer"
MENU
MENUITEM "Industry" ACTION cInd()
MENUITEM "Commerce" ACTION cCom()
MENUITEM "Service" ACTION cSer()
ENDMENU
MENUITEM "View Profile" ACTION cPrf()
ENDMENU
MENUITEM "Products"
MENU
MENUITEM "Add New Product" ACTION pAdd()
MENUITEM "View Profile" ACTION pPrf()
ENDMENU
ENDMENU
por exemplo, após executar a função cSer(), eu gostaria de mostrar o
menu
- Code: Select all Expand view RUN
'Customers'
'Add New Customer'
'Industry'
'Commerce'
'Service'
muito obrigado
abraços