FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour fastreport pages
Posts: 332
Joined: Thu Nov 17, 2005 09:11 PM
fastreport pages
Posted: Tue Aug 28, 2012 04:49 PM

Hi,

How i can disable a page in report depending a value of xharbour variable like this:

If imp2 = "N"
report.page2:disable()
Endif

Thanks.

Posts: 205
Joined: Fri Oct 07, 2005 05:07 PM
Re: fastreport pages
Posted: Wed Aug 29, 2012 09:31 PM
Pascal Script
Code (fw): Select all Collapse
if imp2 = 'N' then 
   page2.visible = false;
Saludos/regards

RenOmaS



skype: americo.balboa
Posts: 332
Joined: Thu Nov 17, 2005 09:11 PM
Re: fastreport pages
Posted: Fri Aug 31, 2012 01:49 PM
RenOmaS wrote:Pascal Script
Code (fw): Select all Collapse
if imp2 = 'N' then 
   page2.visible = false;


Thank you!

Continue the discussion