1

Form2に以下のコードがあります

public void authorisedList()
    {
        using (myContext v = new myContext())
        {
            DateTime date = DateTime.Today.AddMonths(-12);

            var myList = (from l in v.AuthorisedList
                                            where l.FromDate >= date
                                            select new
                                            {
                                                l.ID,
                                                l.EmpName,
                                                l.StartDate,
                                                l.EndDate,
                                                l.Days,
                                                l.Approved,
                                                l.Confirmed,
                                            }).ToList();

            reportViewer1.LocalReport.DataSources.Clear();
            ReportDataSource datasource = new ReportDataSource("MyReportsDatasource", myList);
            reportViewer1.LocalReport.DataSources.Add(datasource);

            string exeFolder = Path.GetDirectoryName(Application.ExecutablePath);
            string reportPath = Path.Combine(exeFolder, @"rdlcReports\Authorised List.rdlc");

            reportViewer1.LocalReport.ReportPath = reportPath;
            reportViewer1.RefreshReport();
        }
    }

次に、Form2の親であるForm1で、ラジオボタンに以下のコードがあります

 private void radioButton1_CheckedChanged(object sender, EventArgs e)
    {
        Form2 au = new Form2(this);
        au.authorisedList();
    }

問題は、Form1のradioButtonコントロール(radioButton1)をチェックすると、Form2のauthorizedList()が実行されているように見えますが、reportViewerレポートが更新/変更されないことです。

なぜだろうか。

4

1 に答える 1

0

Form2がすでに open である場合は、開いているフォームのオブジェクトを取得してから、そのメソッドを呼び出す必要がありますauthorisedList()。プロパティを使用できApplication.OpenFormsます。

private void radioButton1_CheckedChanged(object sender, EventArgs e)
{
    Form2 au = Application.OpenForms["Form2"] as Form2;
    if(au != null)
           au.authorisedList();
}
于 2013-02-20T10:13:46.160 に答える