1 (edited by marcelruhf 08/28/2012 10:17:48 am)

Topic: Removing the thick line before

Hello,

I have tried to remove the bold line below the company address, before the "Charge to" line.
However, there are multiple entries referencing line drawing or scaling in the pdf_report.inc file.

How can I achieve this (I have conducted research before posting)?

Re: Removing the thick line before

If you open /reporting/includes/header2.inc and go down to lince 45 and line 47 and comment out those lines so it appears like

44                  $this->SetDrawColor(205, 205, 205);
45  //              $this->Line($iline1, 3);
46                  $this->SetDrawColor(128, 128, 128);
47  //              $this->Line($iline1);

This will remove that line for you. Enjoy.

Re: Removing the thick line before

itmas wrote:

If you open /reporting/includes/header2.inc and go down to lince 45 and line 47 and comment out those lines so it appears like

44                  $this->SetDrawColor(205, 205, 205);
45  //              $this->Line($iline1, 3);
46                  $this->SetDrawColor(128, 128, 128);
47  //              $this->Line($iline1);

This will remove that line for you. Enjoy.

Thanks, that solved my problem.