When i use an array to set each column to a specific size, is not working, all the columns take the value of the last element of the array. Beside that there are some errors of uninitialize offset and that's because in CreateTable.inc, $intCol is defined outside the foreach as i show below:
[code]
$this->generateTBLLOOK($args[1]['TBLLOOKval']);
$this->generateTBLOVERLAP();
$intLine = 0;
//$intCol = 0; where is now
foreach ($args[0] as $datDepth) {
$intCol = 0; // where it whould be
$this->generateTR();
$this->generateTRPR();
[/code]
Maybe there is a better solution but this worked for me.
Thanks,
Adi