W
Walt White
How do I pass a dataSet created on one form (frmShowGrid) to another form
using C#. The second form (frmSchedule) to is being invoked via
frmSchedule.ShowDialog() if that matters. Basically I have a dataGrid on the
first form and I want to display that same data in a Crystal Report on the
second form. When the report is diplayed it shows the field column names but
no data.
I have tried the folowing which doesn't work:
crReportDocument.SetDataSource(((frmShowGrid)this.ParentForm).dsHRTrack);
..Thanks in advance,
Walt
using C#. The second form (frmSchedule) to is being invoked via
frmSchedule.ShowDialog() if that matters. Basically I have a dataGrid on the
first form and I want to display that same data in a Crystal Report on the
second form. When the report is diplayed it shows the field column names but
no data.
I have tried the folowing which doesn't work:
crReportDocument.SetDataSource(((frmShowGrid)this.ParentForm).dsHRTrack);
..Thanks in advance,
Walt