1
Answer

Silverlight Child Wild

David Smith

David Smith

13y
1.2k
1
When you show a childwindow dialog , how do you determine if the user have click ok or cancel dialog button. Im use to winforms, Im just now getting use to silverlight. Its been three days. lololol


 ChildWindow childWindow = new NavigationChildWindow("Testing", "Testing 1, 2, 3");
      childWindow .Show();


//I want to check childWindow dialog result right here

if( childWindow dialog result == Ok)
{
  // do something
}
else
{

  // do this
}
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}";