I have a problem in visual studio:
I have a report with the following
Table:
Detail line
- Group line Outer
- Group line Inner
In group line Inner I use code.getvar() in row visibility expression
Report code:
Shared Var as Boolean
Public Function getvar as Boolean
Var = true
Return var
End Function
If I execute the report the last 25 % of the pages are printed without heading when I print to pdf
If I change it to:
Public Function getvar as Boolean
Return true
End Function
All pages are printed with heading
Any suggestion to avoid this error?
0