﻿When Automation starts up, it looks in its install dir (the same dir as 
the file PCsELcad.exe is).

This directory, is where your DLL-file should be placed.
Also place a MIF-file here. The MIF-file tells Automation
about the DLL-filename, and what text to display.

Edit the Mif-file so it points to the DLL, and correct text as needed.


Help for the MIF-file:
[Modul] 
	The text in "Title=" is the text displayed in "Files->Modules"
	
	The text in "LC_Title=" will overrule the previous caption if languagecode is found
	(LC = Language code. Ex. DK=Denmark, NO=Norway, etc...)


[PLUGIN]
	The text in "MenuX=" tells where the call should be availeble.
	EX = "Menu1=Tools" will make it availeble through the tools-menu.
	
	The caption to the menu will be fetch From "NameX=".
	The Text from "LC_NameX=" will overrule the previous caption if languagecode is found
	(LC = Language code. Ex. DK=Denmark, NO=Norway, etc...)
	 
	The Text from "CMDX=" is the command to run. Here is where you DLL-filename should be placed.
	
	The text from "IndexX=" is at what location in the selected menu, the called should be placed.


Notice:
A call can be made availeble to call from more than one specific location in Automation.

Ex.
[PLUGIN]
Menu1=Tools
Name1=Test DLL
UK_Name1=Test DLL
DK_Name1=Test af DLL
SE_Name1=Test av DLL
CZ_Name1=Testovací DLL
NO_Name1=Test av DLL
PL_Name1=Testowa biblioteka DLL
IT_Name1=Prova DLL
FR_Name1=Test de la DLL
Cmd1=TestDLL.dll,0,0,0
Index1=40

Menu2=Popup
Name2=Test DLL
UK_Name2=Test DLL
DK_Name2=Test af DLL
SE_Name2=Test av DLL
CZ_Name2=Testovací DLL
NO_Name2=Test av DLL
PL_Name2=Testowa biblioteka DLL
IT_Name2=Prova DLL
FR_Name2=Test de la DLL
Cmd2=TestDLL.dll,0,0,0
Index2=10

Makes the call availeble from the Toolsmenu and a pop-up-menu.
This will be descriped more in one of the next versions of this documentation.
Please notice, that for each place a call should be made availeble, the number
behind the parametertext, should increase.
So for the first items in [PLUGIN] the values are 1.
For the next items in [PLUGIN] the values are 2.
etc... (if more items)
