Change Database
How to change the database in TP.exe.
- Open “D:\ITL\ITL_PRG\itl_license\bin\x86\Release\itl_license-v2.exe“.
- Type the name of the database in encrypt field
- Copy the value in the decrypt field.
- Go to config/db.itl file in your build folder.
- Replace the line below “Catalog” with the value you copied.

Add Menu Item
You can add a menu item using the following method.
- Launch the application and press
F12
. - Select “Main Menu” from the config menu.

- Click any item in the same menu, enter the new name and click add

- A new id will be generated in the menu field, take note of that id.
- Go to TP_MainMenu_Factory.cs and add the following lines to TP_MainMenu_Factory (constructor):
ITL_Menu.MenuActions.Add(<Add your id here>, delegate ()
{
TP_Form.DisplayForm(new <Your form here>(), this);
});