selection. net
OpenFileDialog dlg = new OpenFileDialog ();
dlg.Title = "Select Crystal Reports file";
dlg.Filter = "Crystal Reports (*. rpt) if (dlg.ShowDialog () == DialogResult.OK) {
this.Cursor = Cursors.WaitCursor;
CrystalReportViewer.ReportSource = dlg.FileName;
this.Cursor = Cursors.Default;
}
0 comments:
Post a Comment