Column HEader?????
Column HEader?????
How to show column or hide column header dynimcally from my . CS file?????
i mean to say....
Header1 Header2 Header 3....
Now in my form in window application i have 3 checkbox....if user selects all three checkbox then all header appears and if user selects first two checkbox and uncheck third one then only
Header1 Header2 will appear in the report with data....
Is it possible to do????
Plz reply soon....
Thanks....
i mean to say....
Header1 Header2 Header 3....
Now in my form in window application i have 3 checkbox....if user selects all three checkbox then all header appears and if user selects first two checkbox and uncheck third one then only
Header1 Header2 will appear in the report with data....
Is it possible to do????
Plz reply soon....
Thanks....
Column HEader?????
Hi.
Please use the following code in each BeforePrintEvent of Header1:
in BeforePrintEvent of Header2:
and so on.
Thank you.
Please use the following code in each BeforePrintEvent of Header1:
Code: Select all
Header1.Enabled =CheckBox1.Checked;
Code: Select all
Header2.Enabled =CheckBox2.Checked;
Thank you.
Column HEader?????
Thanks...
But i want to clear one thing that checkbox is my .net control and not the stimulsoft checkbox control....
How to do in that case???
But i want to clear one thing that checkbox is my .net control and not the stimulsoft checkbox control....
How to do in that case???
Column HEader?????
and i am really sorry for writing the question in wrong way...
suppose in a Header band, there are 4 column header....
Then How to do disable and enable the column header?
suppose in a Header band, there are 4 column header....
Then How to do disable and enable the column header?
Column HEader?????
Hello.
You can do it in the same way as with a header band.
Thank you.
You can do it in the same way as with a header band.
Code: Select all
stiText1.Enabled = checkBox1.Checked;
stiText2.Enabled = checkBox2.Checked;
Column HEader?????
Thanks,,,,i was able to that...plus i had to create some variable in the report to get the value of check box from the my .CS file.....
Thanks.....
Thanks.....
Column HEader?????
You are welcome.
Please let us know if any help is required.
Thank you.
Please let us know if any help is required.
Thank you.