Forum Discussion
dhanapal1
14 years agoContributor
Can we create bunch of functions in one unit and call those function from any other unit. Actually i created bunch of function in unit1 and try to call those function in unit 2. If i do like this first function in unit1 is getting invoked remainig funtions are not getting invoked. tell me is it possiable to create bunch of function in one and later we can in another unit.
Example:
Unit 1
Example:
Unit 1
function fncfindtextnode(objName, objid)
{
}
function fncfindTxnLink(objName, objid)
{
}
Unit2
//USEUNIT Unit1
function genericfunctest()
{
fncfindtextnode(panelmbar,0);
fncfindTxnLink(mpanel,Node0);
fncfindTxnLink(mpanel, "Node01");
fncfindTxnLink(mpanel, "Node0113");
}