Skip to content

Instantly share code, notes, and snippets.

@Dadinel
Last active June 11, 2019 23:29
Show Gist options
  • Save Dadinel/27d75b12781db34bb29c5d4345800121 to your computer and use it in GitHub Desktop.
Save Dadinel/27d75b12781db34bb29c5d4345800121 to your computer and use it in GitHub Desktop.
Exemplo de MenuDef - Utilizando o xcommand
static function MenuDef()
local aRotina as array
aRotina := {}
ADD OPTION aRotina TITLE "Pesquisar" ACTION "AxPesqui" OPERATION 1 ACCESS 0
ADD OPTION aRotina TITLE "Visualizar" ACTION "AxVisual" OPERATION 2 ACCESS 0
ADD OPTION aRotina TITLE "Incluir" ACTION "AxInclui" OPERATION 3 ACCESS 0
ADD OPTION aRotina TITLE "Alterar" ACTION "AxAltera" OPERATION 4 ACCESS 0
ADD OPTION aRotina TITLE "Excluir" ACTION "AxDeleta" OPERATION 5 ACCESS 0
return aRotina
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment