Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7798669
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T00:04:08+00:00 2026-06-02T00:04:08+00:00

I want to be able to transfer values from one DataGridView in Form1 to

  • 0

I want to be able to transfer values from one DataGridView in Form1 to another DataGridView in Form3. To do this I’ve chosen to filter them in 3 different variables which would be in classes so that i could access them later in Form3.

These are the classes: (I’ve had them as a single one with 3 variables already)

public class verify1
{
    public static int[] CodUser { get; set; }
}

public class verify2
{
    public static DateTime[] DataFim{ get; set; }
}

public class verify3
{
    public static string[] Nome { get; set; }
}

Altho, when i am assigning values to the variables i get a NullReferenceException right in the first time the for runs.

This is the code i used to assign values:

int a = 0;
for (int i = 0; i < dataGridView1.RowCount - 1; i++)
{    
    DateTime date = Convert.ToDateTime(dataGridView1.Rows[i].Cells[2].Value);   
    if (date <= DateTime.Now)   
    {   
        verify1.CodUser[a] = Convert.ToInt32(dataGridView1.Rows[i].Cells[0].FormattedValue);    
        verify2.DataFim[a] = Convert.ToDateTime(dataGridView1.Rows[i].Cells[2].FormattedValue);
        verify3.Nome[a] = Convert.ToString(dataGridView1.Rows[i].Cells[3].Value);   
        a++;   
    }
}

Now, what i don’t understand is why Visual Studio says the value is null. The exception happens in the following line:

verify1.CodUser[a] =   Convert.ToInt32(dataGridView1.Rows[i].Cells[0].FormattedValue);

(which is 17389) in the first place and won’t let me go further. I cant see why it’s returning null. By the way, the DataGridView is fully fulfilled with data.

Why is it returning null?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T00:04:09+00:00Added an answer on June 2, 2026 at 12:04 am

    The auto-properties are automatically intialized to default value of the returning type.
    You are dealing with reference type Array. The defalt value for the reference type is null.

    It’s better, in this case, avoid to have auto properties, but use ordinary ones.

    Example:

    public class verify1
    {
        static List<int> codUser = new List<int>(); //definition
        public static List<int> CodUser
        { 
           get { return codUser;} 
           set {codUser = value;} 
         }
    }
    

    I esplicitly used a List<T> in this case, cause in moment of declaration you don’t know the excat size of array, and alsoo, according to the code provided, it can vary.

    EDIT

    Can use it like this (in practice like you did before)

    for (int i = 0; i < dataGridView1.RowCount - 1; i++)
    {    
        DateTime date = Convert.ToDateTime(dataGridView1.Rows[i].Cells[2].Value);   
        if (date <= DateTime.Now)   
        {   
            verify1.CodUser[a].Add( Convert.ToInt32(dataGridView1.Rows[i].Cells[0].FormattedValue));    
            ......
            ....  
        }
    }
    

    Hope this helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to be able to email a report daily from a glpi database
I want to be able to invoke an SSIS package at will from a
I want to be able to strip off a header from a wav file.
I want to be able to transfer a number of files (html, php, jpg,
I want to be able to send Paypal an instruction, via PHP, to transfer
I want to be able to map a path to a different domain but
I wanted to know how would I be able to transfer files from linux
I would like to be able to hide another application's window from the taskbar,
I'm using LaTeX and BibTeX for an article, and I want to able to
Want to be able to provide a search interface for a collection of objects

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.