	;;;;;;;;;;
	;Toolbar.txt;
	;;;;;;;;;;

This text explains how to add, remove, enable, disable a toolbar in the Guibuilder.
To learn how to modify the database read the file by modifying_db.txt

Note: The items in the toolbar of controls still are static and should be modified in the program.
Rhe information from the main toolbar is stored in the Table toolbar of the db.
To each menu item, corresponds to a record in that table.


how to add ine new element in toolbar

*) Declare in section "const variable and Global" a new global variable.
*) Adda new record in the table "toolbar" and complete the following points:
    id:      leave in blank, it'd complete for database.
    texto: 	Text Description
    x: Location within row
    y: Row Number Location.
    comando:  variable before create (within $ initial)
    icono:   number of icon recurse within iconset.dll
    tip:      Tip to show when mouse hover
    habilitado: set to 1.
*) Add variable in Loop msg, with code to execute.
*) Confirm changes.

How to delete one element in toolbar

*) Identificar variable in Msg Loop.
*) Delete variable in Msg Loop.
*) Delete row with name like variable in table "toolbar".
*) Confirm changes.

How to disable a existent element from toolbar
*) Identificar variable in Msg Loop.
*) Search in table Toolbar row with name like variable.
*) set 0 in column "habilitado".
*) Confirm changes.

How to enable a existent element from toolbar
*) Identificar variable in Msg Loop.
*) Search in table Toolbar row with name like variable.
*) set 1 in column "habilitado".
*) Confirm changes.
