1

私は 1 つの Windows アプリケーション (C#.net) を開発しました。私は例外を得ました、

オブジェクト参照がオブジェクト インスタンスに設定されていません。

スタックトレースは

C:\FinalOnam\CableOperatorSoftware\OnamVideoCable\OnamVideoCable\Bill Generate.cs:line 179 の OnamVideoCable.Bill_Generate.btnBill_Click(オブジェクト送信者、EventArgs e)

System.Windows.Forms.Control.OnClick (EventArgs e) で

System.Windows.Forms.Button.OnMouseUp (MouseEventArgs mevent) で

System.Windows.Forms.Control.WmMouseUp (Message& m、MouseButtons ボタン、Int32 クリック) で

System.Windows.Forms.Control.WndProc (メッセージ & m) で

System.Windows.Forms.ButtonBase.WndProc (メッセージ & m) で

System.Windows.Forms.Button.WndProc (メッセージ & m) で

System.Windows.Forms.Control.ControlNativeWindow.WndProc (メッセージ & m) で

System.Windows.Forms.NativeWindow.DebuggableCallback (IntPtr hWnd、Int32 msg、IntPtr wparam、IntPtr lparam) で

System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW (MSG& メッセージ) で

System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop (Int32 dwComponentID、Int32 理由、Int32 pvLoopData) で

System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner (Int32 理由、ApplicationContext コンテキスト) で

System.Windows.Forms.Application.ThreadContext.RunMessageLoop (Int32 理由、ApplicationContext コンテキスト) で

C:\FinalOnam\CableOperatorSoftware\OnamVideoCable\OnamVideoCable\Program.cs:line 19 の OnamVideoCable.Program.Main() で

System.AppDomain._nExecuteAssembly (アセンブリ アセンブリ、文字列 [] 引数) で

Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() で

System.Threading.ExecutionContext.Run (ExecutionContext executionContext、ContextCallback コールバック、オブジェクトの状態) で

System.Threading.ThreadHelper.ThreadStart() で

コード:

private void btnBill_Click(object sender, EventArgs e)
{
    int CustNo=0;
    int PayMonth;
    objB.OB = Convert.ToDouble(txtOB.Text);
    
    if (ddCustSelect.Text == "All Customers")
    {
        try
        {
            DataTable dtCustNo = objCust.GetCustInfoForBill();
            foreach (DataRow drCustNo in dtCustNo.Rows)
            {
                 CustNo = Convert.ToInt32(drCustNo["CustNo"]);
                 DataTable dtR = new DataTable();
                    dtR=objR.GetLastReceiptInfo(CustNo);
                if (dtR != null)
                {
                    if (dtR.Rows.Count > 0)
                    {
                        DataRow drR = dtR.Rows[0];
                        //groupBox1.Visible = true;
                        //lblReceipt.Text = Convert.ToString(drR["RNo"]);
                        //lblPaidAmt.Text = Convert.ToString(drR["Amount"]);
                        // lbloutstand.Text = Convert.ToString(drR["Balance"]);
                        //lblMonthRate.Text = Convert.ToString(drR["MonthlyRate"]);
                        DateTime paydate = Convert.ToDateTime(drR["date"]);
                        //lblPayMonth.Text = Convert.ToString(drR["paydate"]);
                        PayMonth = paydate.Month;
                        objB.LastOut = Convert.ToDouble(drR["Balance"]);
                        total = calculate_bill(PayMonth, ddMonth.SelectedIndex + 1, Convert.ToDouble(drR["Balance"]), Convert.ToDouble(drR["MonthlyRate"]));
                    }
                    else
                    {
                        PayMonth = ddMonth.SelectedIndex + 1;
                        DataTable dtRate = objRate.GetExistCustRate(CustNo);
                        DataRow drRate = dtRate.Rows[0];
                        //total = calculate_bill(PayMonth, ddMonth.SelectedIndex + 1, 0, Convert.ToDouble(drRate["Total"]));
                        //objB.LastOut = 0;
                        total = Convert.ToDouble(drRate["Total"]);
                        objB.LastOut = total;
                    }
                }
                else
                {
                    PayMonth = ddMonth.SelectedIndex + 1;
                    DataTable dtRate = objRate.GetExistCustRate(CustNo);
                    DataRow drRate = dtRate.Rows[0];
                    //total = calculate_bill(PayMonth, ddMonth.SelectedIndex + 1, 0, Convert.ToDouble(drRate["Total"]));
                    //objB.LastOut = 0;
                    total = Convert.ToDouble(drRate["Total"]);
                    objB.LastOut = total;
                    //MessageBox.Show("Table is null");
                }
                objB.CustNo = Convert.ToInt32(CustNo);
                objB.Month = ddMonth.Text;
                objB.Year = ddYear.Text;
                objB.Total = total;

                DataTable dtBill = new DataTable(); 
                   dtBill = objB.checkBill();
                   if (dtBill != null)
                   {
                       if (dtBill.Rows.Count > 0)
                       {
                           // MessageBox.Show("Bill is Already Generated");
                           continue;
                       }
                       else
                       {
                           objB.GenerateBill();

                       }
                   }
                   else
                   {
                       //MessageBox.Show("2nd table is null");
                       objB.GenerateBill();
                   }
               
            }
            MessageBox.Show("Bill is generated");
        }
        catch (Exception ex)
        {
           // MessageBox.Show(ex.Message + CustNo);
            throw ex;
        }
    }
    if (ddCustSelect.Text == "Single Customer")
    {
        try
        {
            //panelSingle.Visible = true;
            // groupBox1.Visible = true;
            objB.CustNo = Convert.ToInt32(ddCustNo.Text);
            objB.Month = ddMonth.Text;
            objB.Year = ddYear.Text;
            objB.Total = Convert.ToDouble(lblTotalBill.Text);
            if (lbloutstand.Visible)
            {
                objB.LastOut = Convert.ToDouble(lbloutstand.Text);
            }
            else
            {
                objB.LastOut = objB.Total;
            }
           
            DataTable dtBill = objB.checkBill();
            if (dtBill != null)
            {
                if (dtBill.Rows.Count > 0)
                {
                    MessageBox.Show("Bill is Already Generated");
                }
                else
                {
                    if (objB.GenerateBill())
                    {
                        MessageBox.Show("Bill is generated..");
                    }
                    else
                    {
                        MessageBox.Show("Error while generating bill");
                    }
                }
            }
            else
            {
                MessageBox.Show("2nd table null");
            }
        }
        catch(Exception)
        {
        }

        
    }
}//----this is line no 179
4

2 に答える 2

1

そのため、179行目を注意深く見てください(またはその近く - 数が少ない場合があります)

C:\FinalOnam\CableOperatorSoftware\OnamVideoCable\OnamVideoCable\Bill Generate.cs:line 179 の OnamVideoCable.Bill_Generate.btnBill_Click(オブジェクト送信者、EventArgs e)

そこに何かがヌルです。ブレークポイントを追加し、デバッガーを使用します。null を確認するか、予期せず null になっている原因を修正してください。私はあなたに何を言うことができません - 私はあなたのコードを見ることができません!

于 2012-08-11T08:14:13.313 に答える
0

Generate.cs:line 179 を見て、この行で使用している変数を確認してください。そのうちの 1 つが null です

于 2012-08-11T08:13:53.767 に答える