2
Answers

Appearance of new page

ray dona

ray dona

16y
3.1k
1

How can I control how a new page is displayed when a button is clicked? For example, when a button that links to another page is clicked the new page appears. Its the appearance of that new page I wish to control. I would like the page to start as a dot on the button and then blow up, maybe expand slowly, etc.

Answers (2)
0
Amit Dhania

Amit Dhania

NA 659 164.6k 16y

We can put fields on report dynamically. For it we have to put formula-fields on report on design time.
We can put fields value from database in formula-fields in our c# coding.

For example AttendenceReport is crystal report having formula-field "status".

 AttendenceReport objAttendenceReport=new AttendenceReport();
//{AttendenceTable.Status} values coming from //database                               objAttendenceReport.DataDefinition.FormulaFields["Status"].Text = "{AttendenceTable.Status}";