9
Answers

How to run my .Exe file?

I built a console application in VS2010.The tool will simply process some details and atore it to the sql table .When I debug my program in VS2010 it run sucessfully and meet my requirement.But when i run the exe file it run but can't stroe the values to sql table.The exe didn't generate any error.It runs but failed to meet my requirement.I don't know why this is happened?please help me to solve my issue.
Answers (9)
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}";