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.
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.
if imp2 = 'N' then
page2.visible = false;RenOmaS wrote:Pascal Script
if imp2 = 'N' then   page2.visible = false;