	;;;;;;;;;;
	;Menu.txt;
	;;;;;;;;;;

This text explains how to add, remove, enable, disable a menu in Guibuilder.
To learn how to modify the database read the file by modifying_db.txt
The information of the menus is stored in the table Menus of the db.
To each menu item, corresponds to a record in that table.


How to add one new point into menu.

*) Declarar en la seccion "Global const and variable" una nueva variable global
*) Adda new record in the table "Menues" and complete the following points:
	id: leave in blank, it'd complete for database.
    texto: Text of menu
    x: Number of Menu (for left to rigth)
    y: Location number de sub item in menu (0 for main)
    comando: variable before create (within $ initial)
    icono: number of icon recurse within iconset.dll
    tip: Tip to show, mouse over
    habilitado: ser to a.
*) confirm	change.
*) Add variable in Loop msg, with code to execute

How to delete one new point into menu.

*) Identified variable in Msg Loop.
*) delete variable in Msg Loop Code.
*) Delete row with name like variable in table Menues.
*) confirm	change.

how to disable a exist point from menu.
*) Identified variable in Msg Loop.
*) Search in table Menues row with name like variable.
*) set 0 in column "habilitado".
*) confirm	change.

how to enable a exist point from menu.
*) Identified variable in Msg Loop.
*) Search in table Menues row with name like variable.
*) set 1 in column "habilitado".
*) confirm	change.
