0

以下に示すようなコードがあります。

try
            {

                strReportName = Application.StartupPath + "\\Report\\Accounts\\AccTrialBalanceCrystalReport.rpt";
                DataSet ds = new System.Data.DataSet();
                SchoolSoulLibrary.clsCommonVariables OClsCommonVariables = new SchoolSoulLibrary.clsCommonVariables();
                ds = OclsCommonVariables.SetDataInDataSetFromEnumerableList(ref ds, reportData.AsEnumerable()); // Throws exception at this line.
                string[,] AryParameter = new string[,]
                    {
                        {"totalOpeningDr", vOpDr.ToString()},
                        {"totalOpeningCr", vOpCr.ToString()},    
                        {"totalCurrentDr", vCurDr.ToString()},
                        {"totalCurrentCr", vClsngDr.ToString()},  
                        {"totalClosingDr", vCurCr.ToString()},
                        {"totalClosingCr", vClsngCr.ToString()},  
                        {"schoolName", clsSchoolSoulObjects.OAcdSchoolInfo.SchoolName},
                        {"@pStartDate", startDate.ToString()},  
                        {"@pEndDate", endDate.ToString()},
                        {"@pSchoolId", schId.ToString()},  
                    };
                SchoolSoulLibrary.clsCrystalReport.SetReportSourceUsingReportPath(strReportName, ds, ref crystalReportViewer1, AryParameter);
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }

この行で

ds = OclsCommonVariables.SetDataInDataSetFromEnumerableList(ref ds, reportData.AsEnumerable()); 

プログラムは関数内に入らずに例外をスローします

スローされる例外は、「オブジェクト参照がオブジェクトのインスタンスに設定されていません」です。

この関数は 3 つの引数を取ります

public DataSet SetDataInDataSetFromEnumerableList(ref DataSet DS, object obj, params string[] FieldNames)
        {
             return ds;
        }
4

2 に答える 2

0

例外のスタック トレースを使用する、Luc

于 2013-10-09T07:18:58.353 に答える