Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Null reference exception occurs for no reason

Null reference exception occurs for no reason

Scheduled Pinned Locked Moved C#
questionxmlhelp
7 Posts 4 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    Alex Dunlop
    wrote on last edited by
    #1

    Hi, I use this class to read XML file and get color information of DataGridView rows. When I run, compiler says: System.NullReferenceException: 'Object reference not set to an instance of an object.' My class is:

    public static void ReadDataGridViewSettings(System.Windows.Forms.DataGridView dgv)
    {
    XmlDocument xmldoc = new XmlDocument();
    XmlNodeList xmlnode;
    FileStream fs = new FileStream(Application.StartupPath + @"\MyGrid.xml", FileMode.Open, FileAccess.Read);
    xmldoc.Load(fs);
    xmlnode = xmldoc.GetElementsByTagName("Row");
    for (int i = 0; i <= dgv.Rows.Count; i++)
    {
    int cellcolor = int.Parse(xmlnode[i].ChildNodes.Item(0).InnerText.Trim());
    int textcolor = int.Parse(xmlnode[i].ChildNodes.Item(1).InnerText.Trim());
    if (cellcolor != 0)
    {
    dgv.Rows[i].DefaultCellStyle.BackColor = Color.FromArgb(Convert.ToInt32(cellcolor));
    dgv.Rows[i].DefaultCellStyle.ForeColor = Color.FromArgb(Convert.ToInt32(textcolor));
    }
    else
    {
    dgv.Rows[i].DefaultCellStyle.BackColor = Color.White;
    dgv.Rows[i].DefaultCellStyle.ForeColor = Color.Black;
    }
    }
    fs.Close();
    }

    My XML file has this structure:

    -677434
    0
    0
    0

    How can I fix it?

    OriginalGriffO Richard DeemingR R 3 Replies Last reply
    0
    • A Alex Dunlop

      Hi, I use this class to read XML file and get color information of DataGridView rows. When I run, compiler says: System.NullReferenceException: 'Object reference not set to an instance of an object.' My class is:

      public static void ReadDataGridViewSettings(System.Windows.Forms.DataGridView dgv)
      {
      XmlDocument xmldoc = new XmlDocument();
      XmlNodeList xmlnode;
      FileStream fs = new FileStream(Application.StartupPath + @"\MyGrid.xml", FileMode.Open, FileAccess.Read);
      xmldoc.Load(fs);
      xmlnode = xmldoc.GetElementsByTagName("Row");
      for (int i = 0; i <= dgv.Rows.Count; i++)
      {
      int cellcolor = int.Parse(xmlnode[i].ChildNodes.Item(0).InnerText.Trim());
      int textcolor = int.Parse(xmlnode[i].ChildNodes.Item(1).InnerText.Trim());
      if (cellcolor != 0)
      {
      dgv.Rows[i].DefaultCellStyle.BackColor = Color.FromArgb(Convert.ToInt32(cellcolor));
      dgv.Rows[i].DefaultCellStyle.ForeColor = Color.FromArgb(Convert.ToInt32(textcolor));
      }
      else
      {
      dgv.Rows[i].DefaultCellStyle.BackColor = Color.White;
      dgv.Rows[i].DefaultCellStyle.ForeColor = Color.Black;
      }
      }
      fs.Close();
      }

      My XML file has this structure:

      -677434
      0
      0
      0

      How can I fix it?

      OriginalGriffO Offline
      OriginalGriffO Offline
      OriginalGriff
      wrote on last edited by
      #2

      This is one of the most common problems we get asked, and it's also the one we are least equipped to answer, but you are most equipped to answer yourself. Let me just explain what the error means: You have tried to use a variable, property, or a method return value but it contains null - which means that there is no instance of a class in the variable. It's a bit like a pocket: you have a pocket in your shirt, which you use to hold a pen. If you reach into the pocket and find there isn't a pen there, you can't sign your name on a piece of paper - and you will get very funny looks if you try! The empty pocket is giving you a null value (no pen here!) so you can't do anything that you would normally do once you retrieved your pen. Why is it empty? That's the question - it may be that you forgot to pick up your pen when you left the house this morning, or possibly you left the pen in the pocket of yesterday's shirt when you took it off last night. We can't tell, because we weren't there, and even more importantly, we can't even see your shirt, much less what is in the pocket! Back to computers, and you have done the same thing, somehow - and we can't see your code, much less run it and find out what contains null when it shouldn't. But you can - and Visual Studio will help you here. Run your program in the debugger and when it fails, VS will show you the line it found the problem on. You can then start looking at the various parts of it to see what value is null and start looking back through your code to find out why. So put a breakpoint at the beginning of the method containing the error line, and run your program from the start again. This time, VS will stop before the error, and let you examine what is going on by stepping through the code looking at your values. But we can't do that - we don't have your code, we don't know how to use it if we did have it, we don't have your data. So try it - and see how much information you can find out!

      "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt AntiTwitter: @DalekDave is now a follower!

      "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
      "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt

      1 Reply Last reply
      0
      • A Alex Dunlop

        Hi, I use this class to read XML file and get color information of DataGridView rows. When I run, compiler says: System.NullReferenceException: 'Object reference not set to an instance of an object.' My class is:

        public static void ReadDataGridViewSettings(System.Windows.Forms.DataGridView dgv)
        {
        XmlDocument xmldoc = new XmlDocument();
        XmlNodeList xmlnode;
        FileStream fs = new FileStream(Application.StartupPath + @"\MyGrid.xml", FileMode.Open, FileAccess.Read);
        xmldoc.Load(fs);
        xmlnode = xmldoc.GetElementsByTagName("Row");
        for (int i = 0; i <= dgv.Rows.Count; i++)
        {
        int cellcolor = int.Parse(xmlnode[i].ChildNodes.Item(0).InnerText.Trim());
        int textcolor = int.Parse(xmlnode[i].ChildNodes.Item(1).InnerText.Trim());
        if (cellcolor != 0)
        {
        dgv.Rows[i].DefaultCellStyle.BackColor = Color.FromArgb(Convert.ToInt32(cellcolor));
        dgv.Rows[i].DefaultCellStyle.ForeColor = Color.FromArgb(Convert.ToInt32(textcolor));
        }
        else
        {
        dgv.Rows[i].DefaultCellStyle.BackColor = Color.White;
        dgv.Rows[i].DefaultCellStyle.ForeColor = Color.Black;
        }
        }
        fs.Close();
        }

        My XML file has this structure:

        -677434
        0
        0
        0

        How can I fix it?

        Richard DeemingR Offline
        Richard DeemingR Offline
        Richard Deeming
        wrote on last edited by
        #3

        Alex Dunlop wrote:

        compiler says: System.NullReferenceException

        The compiler doesn't generate that exception; the runtime does. If it was a compiler error, you wouldn't be able to run your application at all, because you wouldn't be able to compile it.

        Alex Dunlop wrote:

        new FileStream(Application.StartupPath + @"\MyGrid.xml"

        You shouldn't try to write files in the same directory as your application. When it's deployed, it will most likely be stored under the "Program Files" directory, and it would need to run as an admin account to have permission to write to its own directory. See Where Should I Store My Data?[^] for suggestions of more appropriate locations to save your files.


        "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer

        "These people looked deep within my soul and assigned me a number based on the order in which I joined" - Homer

        OriginalGriffO 1 Reply Last reply
        0
        • A Alex Dunlop

          Hi, I use this class to read XML file and get color information of DataGridView rows. When I run, compiler says: System.NullReferenceException: 'Object reference not set to an instance of an object.' My class is:

          public static void ReadDataGridViewSettings(System.Windows.Forms.DataGridView dgv)
          {
          XmlDocument xmldoc = new XmlDocument();
          XmlNodeList xmlnode;
          FileStream fs = new FileStream(Application.StartupPath + @"\MyGrid.xml", FileMode.Open, FileAccess.Read);
          xmldoc.Load(fs);
          xmlnode = xmldoc.GetElementsByTagName("Row");
          for (int i = 0; i <= dgv.Rows.Count; i++)
          {
          int cellcolor = int.Parse(xmlnode[i].ChildNodes.Item(0).InnerText.Trim());
          int textcolor = int.Parse(xmlnode[i].ChildNodes.Item(1).InnerText.Trim());
          if (cellcolor != 0)
          {
          dgv.Rows[i].DefaultCellStyle.BackColor = Color.FromArgb(Convert.ToInt32(cellcolor));
          dgv.Rows[i].DefaultCellStyle.ForeColor = Color.FromArgb(Convert.ToInt32(textcolor));
          }
          else
          {
          dgv.Rows[i].DefaultCellStyle.BackColor = Color.White;
          dgv.Rows[i].DefaultCellStyle.ForeColor = Color.Black;
          }
          }
          fs.Close();
          }

          My XML file has this structure:

          -677434
          0
          0
          0

          How can I fix it?

          R Offline
          R Offline
          Ralf Meier
          wrote on last edited by
          #4

          What this Exeption generally means is allready explained. The Mistake you made in your code is the loop. Your limit is i<= DGV.Rows.Count - but it must be i < DGV.Rows.Count. Change that and it could work ... The Elements from the DGV are from 0...DGV.Rows.Count-1 (because the Collection in it is Zero-based ...

          A 1 Reply Last reply
          0
          • R Ralf Meier

            What this Exeption generally means is allready explained. The Mistake you made in your code is the loop. Your limit is i<= DGV.Rows.Count - but it must be i < DGV.Rows.Count. Change that and it could work ... The Elements from the DGV are from 0...DGV.Rows.Count-1 (because the Collection in it is Zero-based ...

            A Offline
            A Offline
            Alex Dunlop
            wrote on last edited by
            #5

            Thanks. I changed it to

            i<=xmlNode.Count-1

            and solved. Now, I can retrieve all my color setting in each row.

            R 1 Reply Last reply
            0
            • Richard DeemingR Richard Deeming

              Alex Dunlop wrote:

              compiler says: System.NullReferenceException

              The compiler doesn't generate that exception; the runtime does. If it was a compiler error, you wouldn't be able to run your application at all, because you wouldn't be able to compile it.

              Alex Dunlop wrote:

              new FileStream(Application.StartupPath + @"\MyGrid.xml"

              You shouldn't try to write files in the same directory as your application. When it's deployed, it will most likely be stored under the "Program Files" directory, and it would need to run as an admin account to have permission to write to its own directory. See Where Should I Store My Data?[^] for suggestions of more appropriate locations to save your files.


              "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer

              OriginalGriffO Offline
              OriginalGriffO Offline
              OriginalGriff
              wrote on last edited by
              #6

              I told him that a month ago ... How to link SQL CE database file to the directory where EXE file of the application exists?[^] :sigh:

              "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt AntiTwitter: @DalekDave is now a follower!

              "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
              "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt

              1 Reply Last reply
              0
              • A Alex Dunlop

                Thanks. I changed it to

                i<=xmlNode.Count-1

                and solved. Now, I can retrieve all my color setting in each row.

                R Offline
                R Offline
                Ralf Meier
                wrote on last edited by
                #7

                You are welcome ... :)

                1 Reply Last reply
                0
                Reply
                • Reply as topic
                Log in to reply
                • Oldest to Newest
                • Newest to Oldest
                • Most Votes


                • Login

                • Don't have an account? Register

                • Login or register to search.
                • First post
                  Last post
                0
                • Categories
                • Recent
                • Tags
                • Popular
                • World
                • Users
                • Groups