1
Answer

MessageQueue receiving

onez

onez

20y
1.7k
1
I have a background thread that checks for messages every 5 seconds. If I run the program, then close, then rebuild, VS gives an error that the program is still running. The only way to fix the error is restart the computer or always run in debug mode. Any idea what causes this problem or a better way to receive messages?
Answers (1)
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}";