tags:

views:

155

answers:

1

Hi I am generating rdlc report in dotnet2.0 c#. My doubt is i want to freeze the Table header (like excel freeze)in the rdlc report.Since my table data is more , i need this option. Could anyone help me in this...

Urgent...

A: 

set your fixheader property true

for this Select Table > property > fixheader = true

Second way open your rdlc file in xml edition

put the fix header as show below in your header tags

<header>
  <FixedHeader>true</FixedHeader>
</Header>
Pranay Rana
my table control is kept inside list , so even though i set fix header = true it is showing following error ," This is not allowed on data regions inside other data regions "how to avoid this error...please aaists me.
muthukumarm