Click here to Skip to main content
15,891,316 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can I make my textbox object to see the next page of my cross tab report?

When I click my next page button, my textbox object is disappear. My corss-tab and textbox object are in page header of the report.
Posted
Updated 23-Apr-11 3:43am
v2
Comments
Sandeep Mewara 23-Apr-11 9:44am    
Not clear - you talking of handling pagination of a crystal report via a winforms textbox?
kmb89 25-Apr-11 8:32am    
My textbox object is the crystal report's textbox object.
Sandeep Mewara 25-Apr-11 9:48am    
And you tag your question as C#!

1 solution

private void NextPageButton_Click(object sender, EventArgs e)
{
    string headerText = textBoxFirstPage.Text;
     //You can use the headerText string as page header of the report

}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900