473,382 Members | 1,611 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

simple question about ref with object?? PLEASE HELP

ok i have a datagridview in my app and i have a function defined like
so:
public void FillColumns(ref DataGridView theDGV)
when i call it ... like this :
FillColumns(ref dataGridView2);

i get : Object reference not set to an instance of an object.

i dont get it , is'nt my datagridview defined in form.designer.cs????
-private System.Windows.Forms.DataGridView dataGridView2;

PLEASE HELP ME OUT.. i need this in a hurry!

Thanks
Gideon

Nov 22 '06 #1
14 1613
It will be initialised in InitialiseComponent so you need to ensure that is
called first. It is set to call in the constructor by default so it you do
this in the ctor then you'll have to put it after that. If you do already,
then the exception must occur inside the method

Ciaran O'Donnell
http://wannabedeveloper.spaces.live.com

"giddy" wrote:
ok i have a datagridview in my app and i have a function defined like
so:
public void FillColumns(ref DataGridView theDGV)
when i call it ... like this :
FillColumns(ref dataGridView2);

i get : Object reference not set to an instance of an object.

i dont get it , is'nt my datagridview defined in form.designer.cs????
-private System.Windows.Forms.DataGridView dataGridView2;

PLEASE HELP ME OUT.. i need this in a hurry!

Thanks
Gideon

Nov 22 '06 #2
um.. .. yea i thought about that , i call the method during a button
click event

private void button1_Click(object sender, EventArgs e)
{
FillColumns(ref dataGridView2);
//CreateDocumentPropertyTable();
}
so yes, the exception (NullRefrenceException) occurs in the function.
So what do i do!!!!!!

and why does it say Object reference not set to an INSTANCE OF AN
OBJECT!
On Nov 22, 10:22 pm, Ciaran O''Donnell
<CiaranODonn...@discussions.microsoft.comwrote:
It will be initialised in InitialiseComponent so you need to ensure that is
called first. It is set to call in the constructor by default so it you do
this in the ctor then you'll have to put it after that. If you do already,
then the exception must occur inside the method

Ciaran O'Donnellhttp://wannabedeveloper.spaces.live.com

"giddy" wrote:
ok i have a datagridview in my app and i have a function defined like
so:
public void FillColumns(ref DataGridView theDGV)
when i call it ... like this :
FillColumns(ref dataGridView2);
i get : Object reference not set to an instance of an object.
i dont get it , is'nt my datagridview defined in form.designer.cs????
-private System.Windows.Forms.DataGridView dataGridView2;
PLEASE HELP ME OUT.. i need this in a hurry!
Thanks
Gideon
Nov 22 '06 #3
is the dataGridView2 in the same scope as the function?

In other words, are you calling that function from a class that doesn't
know where the dgv is?

On Nov 22, 1:22 pm, "giddy" <gidisr...@gmail.comwrote:
um.. .. yea i thought about that , i call the method during a button
click event

private void button1_Click(object sender, EventArgs e)
{
FillColumns(ref dataGridView2);
//CreateDocumentPropertyTable();
}
so yes, the exception (NullRefrenceException) occurs in the function.
So what do i do!!!!!!

and why does it say Object reference not set to an INSTANCE OF AN
OBJECT!

On Nov 22, 10:22 pm, Ciaran O''Donnell

<CiaranODonn...@discussions.microsoft.comwrote:
It will be initialised in InitialiseComponent so you need to ensure that is
called first. It is set to call in the constructor by default so it you do
this in the ctor then you'll have to put it after that. If you do already,
then the exception must occur inside the method
Ciaran O'Donnellhttp://wannabedeveloper.spaces.live.com
"giddy" wrote:
ok i have a datagridview in my app and i have a function defined like
so:
public void FillColumns(ref DataGridView theDGV)
when i call it ... like this :
FillColumns(ref dataGridView2);
i get : Object reference not set to an instance of an object.
i dont get it , is'nt my datagridview defined in form.designer.cs????
-private System.Windows.Forms.DataGridView dataGridView2;
PLEASE HELP ME OUT.. i need this in a hurry!
Thanks
Gideon
Nov 22 '06 #4
A DataGridView is a reference type. There is no need to pass it by ref.

--
HTH,

Kevin Spencer
Microsoft MVP
Ministry of Software Development
http://unclechutney.blogspot.com

Never trust a dunderhead with a blunderbuss.
"giddy" <gi*******@gmail.comwrote in message
news:11**********************@e3g2000cwe.googlegro ups.com...
ok i have a datagridview in my app and i have a function defined like
so:
public void FillColumns(ref DataGridView theDGV)
when i call it ... like this :
FillColumns(ref dataGridView2);

i get : Object reference not set to an instance of an object.

i dont get it , is'nt my datagridview defined in form.designer.cs????
-private System.Windows.Forms.DataGridView dataGridView2;

PLEASE HELP ME OUT.. i need this in a hurry!

Thanks
Gideon

Nov 22 '06 #5
"giddy" <gi*******@gmail.comwrote in message
news:11**********************@j44g2000cwa.googlegr oups.com...
um.. .. yea i thought about that , i call the method during a button
click event

private void button1_Click(object sender, EventArgs e)
{
FillColumns(ref dataGridView2);
//CreateDocumentPropertyTable();
}
so yes, the exception (NullRefrenceException) occurs in the function.
So what do i do!!!!!!

and why does it say Object reference not set to an INSTANCE OF AN
OBJECT!
First of all, calm down. Whatever emergency you think you have, if you are
posting here it is obviously not serious enough to justify your tone.
Conversely, if you think your panic is justified, then forget about this
newsgroup and go get some paid support straight from Microsoft.

Anyway, as far as your question goes...

You haven't given enough information for anyone to even know what line of
code is generating the null reference exception. What line of code does the
debugger say has the null reference? What variable in that line of code is
the one that is null? And why is it that you expect that variable to NOT be
null?

Until you answer those three questions, it is assured you cannot get any
help here. Even with the answers, it could take some time, but I guarantee
you that without that information, nothing can be done to help you.

I will also submit my agreement with Kevin's point, which is that you
probably don't need for the parameter to FillColumns() to be a "ref"
parameter. I don't see why that would be causing the null reference
exception (unless, of course, the FillColumns() method at some point sets
that parameter to null, in which case that's your problem right there), but
it is not a good idea to pass parameters by reference unless you actually
need to do so.

Pete
Nov 22 '06 #6
Kevin Spencer <sp**@uce.govwrote:
A DataGridView is a reference type. There is no need to pass it by ref.
You make it sound like it will behave the same with and without ref -
and that's completely untrue. It's the difference between passing the
reference by reference and passing the reference by value.

Here's a sample method which certainly won't work if you take out the
"ref" parts:

static void SplitName (string fullName,
ref string firstName,
ref string lastName)
{
string[] bits = fullName.Spliut();
firstName = bits[0];
lastName = bits[1];
}

Now, often people *do* use ref when they don't need to, but without
seeing the OP's method, we can't tell whether that's the case or not.

See http://www.pobox.com/~skeet/csharp/parameters.html for more
information.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Nov 22 '06 #7
Hi Jon,

Now, don't put words in my mouth. I pointed out that it wasn't necessary to
pass the object by reference because I don't know much else about the
problem, but one important aspect to problem-solving is to simplify the
problem. In this case, passing by reference was unnecessary, and, depending
on other factors, *may* have contributed to the problem in some indirect
way. By eliminating that one step, the problem is at least simplified.

If you will re-read my post, you will see that the remark about not needing
to pass the DataGridView by reference was the only remark I made.

--
HTH,

Kevin Spencer
Microsoft MVP
Ministry of Software Development
http://unclechutney.blogspot.com

Never trust a dunderhead with a blunderbuss.

"Jon Skeet [C# MVP]" <sk***@pobox.comwrote in message
news:MP************************@msnews.microsoft.c om...
Kevin Spencer <sp**@uce.govwrote:
>A DataGridView is a reference type. There is no need to pass it by ref.

You make it sound like it will behave the same with and without ref -
and that's completely untrue. It's the difference between passing the
reference by reference and passing the reference by value.

Here's a sample method which certainly won't work if you take out the
"ref" parts:

static void SplitName (string fullName,
ref string firstName,
ref string lastName)
{
string[] bits = fullName.Spliut();
firstName = bits[0];
lastName = bits[1];
}

Now, often people *do* use ref when they don't need to, but without
seeing the OP's method, we can't tell whether that's the case or not.

See http://www.pobox.com/~skeet/csharp/parameters.html for more
information.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too

Nov 23 '06 #8

ok im sorry if i did'nt give enough detail and i'm really sorry if i'm
being rude by saying its urgent , i do have to to finish this project
by the end of this month! and a few more setbacks like this could
jeopardize a lot more than my job , also i cannnot! afford paid
support!
i have good programming background but i started C# just a while ago.
I made quite a few fuctions with ref, and naturally started to panic
when one of them did'nt work!

Firstly , i need to use ref because i have a 2 datagrid views that have
to be filled more or less the same way , and i could have a 3rd one
soon. Whatever is common between the dgvs goes into one function and
then obviously has to change the datagridview passed to it.

I just tried the whole thing without the ref keyword both in the
function and when i call it. and i GET THE SAME EXCEPTION.

the exception occurs inside the function on the first line :
public void FillColumns(ref DataGridView theDGV)
{
theDGV.ColumnCount =
dataSet.Tables["customers"].Columns.Count; //THIS IS THE LINE.

VS says :

NullRefrenceException was not handled
Object reference not set to an instance of an object.]
Troubleshooting tips :
use the 'new' keyword to create an object of the instance (????
check to determine if the object is null before calling the method

i have Form1 , the datagridview is ON Form1 and FillColumns() is in
Form1.cs

In Form1.Designer.cs :
the dgv is declared like this : private
System.Windows.Forms.DataGridView dataGridView2;

and its properties are set like this :
this.dataGridView2.ColumnHeadersHeightSizeMode =
System.Windows.Forms.DataGridViewColumnHeadersHeig htSizeMode.AutoSize;
this.dataGridView2.Location = new System.Drawing.Point(5, 50);
this.dataGridView2.Name = "dataGridView2";

so why is it null!

thanks

Gideon

On Nov 23, 5:18 am, "Kevin Spencer" <s...@uce.govwrote:
----------------------------------------
Kevin Spencer <s...@uce.govwrote:
A DataGridView is a reference type. There is no need to pass it by ref.
Now, often people *do* use ref when they don't need to, but without
seeing the OP's method, we can't tell whether that's the case or not.
--------------------------------------

Peter Duniho wrote:
What line of code does the
debugger say has the null reference? What variable in that line of
code is
the one that is null? And why is it that you expect that variable to
NOT be
null?
--------------------------------------
cbmeeks wrote :
is the dataGridView2 in the same scope as the function?

In other words, are you calling that function from a class that doesn't
know where the dgv is?

Nov 23 '06 #9

hi ,

i'm really embarrased about this ,

theDGV.ColumnCount =
dataSet.Tables["customers"].Columns.Count; //THIS IS THE LINE.

after a 2 more hours of debugging i found out that ......
the DataSet was null not the dgv! =S , and this itself was a cause of
two silly mistakes

I'm really sorry to have wasted your time.

Thank you for your concern!

Gideon

On Nov 23, 9:09 am, "giddy" <gidisr...@gmail.comwrote:
ok im sorry if i did'nt give enough detail and i'm really sorry if i'm
being rude by saying its urgent , i do have to to finish this project
by the end of this month! and a few more setbacks like this could
jeopardize a lot more than my job , also i cannnot! afford paid
support!
i have good programming background but i started C# just a while ago.
I made quite a few fuctions with ref, and naturally started to panic
when one of them did'nt work!

Firstly , i need to use ref because i have a 2 datagrid views that have
to be filled more or less the same way , and i could have a 3rd one
soon. Whatever is common between the dgvs goes into one function and
then obviously has to change the datagridview passed to it.

I just tried the whole thing without the ref keyword both in the
function and when i call it. and i GET THE SAME EXCEPTION.

the exception occurs inside the function on the first line :
public void FillColumns(ref DataGridView theDGV)
{
theDGV.ColumnCount =
dataSet.Tables["customers"].Columns.Count; //THIS IS THE LINE.

VS says :

NullRefrenceException was not handled
Object reference not set to an instance of an object.]
Troubleshooting tips :
use the 'new' keyword to create an object of the instance (????
check to determine if the object is null before calling the method

i have Form1 , the datagridview is ON Form1 and FillColumns() is in
Form1.cs

In Form1.Designer.cs :
the dgv is declared like this : private
System.Windows.Forms.DataGridView dataGridView2;

and its properties are set like this :
this.dataGridView2.ColumnHeadersHeightSizeMode =
System.Windows.Forms.DataGridViewColumnHeadersHeig htSizeMode.AutoSize;
this.dataGridView2.Location = new System.Drawing.Point(5, 50);
this.dataGridView2.Name = "dataGridView2";

so why is it null!

thanks

Gideon

On Nov 23, 5:18 am, "Kevin Spencer" <s...@uce.govwrote:----------------------------------------
Kevin Spencer <s...@uce.govwrote:
>A DataGridView is a reference type. There is no need to pass it by ref.
Now, often people *do* use ref when they don't need to, but without
seeing the OP's method, we can't tell whether that's the case or not.
--------------------------------------
>Peter Duniho wrote:
What line of code does thedebugger say has the null reference? What variable in that line of
code is
the one that is null? And why is it that you expect that variable to
NOT be
null? --------------------------------------
>cbmeeks wrote :is the dataGridView2 in the same scope as the function?

In other words, are you calling that function from a class that doesn't
know where the dgv is?
Nov 23 '06 #10
Kevin Spencer <sp**@uce.govwrote:
Now, don't put words in my mouth. I pointed out that it wasn't necessary to
pass the object by reference because I don't know much else about the
problem, but one important aspect to problem-solving is to simplify the
problem. In this case, passing by reference was unnecessary, and, depending
on other factors, *may* have contributed to the problem in some indirect
way. By eliminating that one step, the problem is at least simplified.
But we don't know whether passing by reference was unnecessary or not -
we've only seen the call, not what the method actually did. If the OP
had posted the code to FillColumns, we might well have seen that it was
unnecessary, but as he hasn't, we can't tell.
If you will re-read my post, you will see that the remark about not needing
to pass the DataGridView by reference was the only remark I made.
Indeed, and we don't know whether it was accurate or not - but I
believe it gave an inaccurate impression.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Nov 23 '06 #11
giddy <gi*******@gmail.comwrote:
Firstly , i need to use ref because i have a 2 datagrid views that have
to be filled more or less the same way , and i could have a 3rd one
soon. Whatever is common between the dgvs goes into one function and
then obviously has to change the datagridview passed to it.
That in itself doesn't mean you have to pass by reference.

It's very important that you understand reference types and passing by
reference. See
http://www.pobox.com/~skeet/csharp/parameters.html
I just tried the whole thing without the ref keyword both in the
function and when i call it. and i GET THE SAME EXCEPTION.

the exception occurs inside the function on the first line :
public void FillColumns(ref DataGridView theDGV)
{
theDGV.ColumnCount =
dataSet.Tables["customers"].Columns.Count; //THIS IS THE LINE.
Okay - in that case, either theDGV is null, or dataSet is null, or
dataSet.Tables["customers"] is null, or
dataSet.Tables["customers"].Columns is null.

You should be able to tell that in the debugger.
In Form1.Designer.cs :
the dgv is declared like this : private
System.Windows.Forms.DataGridView dataGridView2;

and its properties are set like this :
this.dataGridView2.ColumnHeadersHeightSizeMode =
System.Windows.Forms.DataGridViewColumnHeadersHeig htSizeMode.AutoSize;
this.dataGridView2.Location = new System.Drawing.Point(5, 50);
this.dataGridView2.Name = "dataGridView2";

so why is it null!
Well, we don't know for sure that it's that that's null - see above for the options.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Nov 23 '06 #12
Hi Jon,
But we don't know whether passing by reference was unnecessary or not -
we've only seen the call, not what the method actually did. If the OP
had posted the code to FillColumns, we might well have seen that it was
unnecessary, but as he hasn't, we can't tell.
I'll have to admit, I made an educated guess. It was highly unlikely (IMHO),
but as I said, I made an educated guess that there was no need in this case.
Indeed, and we don't know whether it was accurate or not - but I
believe it gave an inaccurate impression.
Well, impressions are subjective, but I will certainly grant you that it at
least gave *you* an inaccurate impression, for whatever reason. Furthermore,
if it gave you an inaccurate impression, it might have given others an
inaccurate impression. :)

I have a tendancy to be concise. I often forget that human perception
involves a great deal of interpretation! While I may mean no more and no
less than what I say, I do find that I am sometimes misunderstood, simply
because I didn't clarify my remarks more. If only I had more time!

--
Best Wishes,

Kevin Spencer
Microsoft MVP
Ministry of Software Development
http://unclechutney.blogspot.com

Never trust a dunderhead with a blunderbuss.
"Jon Skeet [C# MVP]" <sk***@pobox.comwrote in message
news:MP************************@msnews.microsoft.c om...
Kevin Spencer <sp**@uce.govwrote:
>Now, don't put words in my mouth. I pointed out that it wasn't necessary
to
<snip>
Indeed, and we don't know whether it was accurate or not - but I
believe it gave an inaccurate impression.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too

Nov 23 '06 #13
Congratulations! We've all been there before. I am embarassed on a daily
basis by things that only I know I did!

--

Kevin Spencer
Microsoft MVP
Ministry of Software Development
http://unclechutney.blogspot.com

Never trust a dunderhead with a blunderbuss.
"giddy" <gi*******@gmail.comwrote in message
news:11**********************@b28g2000cwb.googlegr oups.com...
>
hi ,

i'm really embarrased about this ,

theDGV.ColumnCount =
dataSet.Tables["customers"].Columns.Count; //THIS IS THE LINE.

after a 2 more hours of debugging i found out that ......
the DataSet was null not the dgv! =S , and this itself was a cause of
two silly mistakes

I'm really sorry to have wasted your time.

Thank you for your concern!

Gideon

On Nov 23, 9:09 am, "giddy" <gidisr...@gmail.comwrote:
>ok im sorry if i did'nt give enough detail and i'm really sorry if i'm
being rude by saying its urgent , i do have to to finish this project
by the end of this month! and a few more setbacks like this could
jeopardize a lot more than my job , also i cannnot! afford paid
support!
i have good programming background but i started C# just a while ago.
I made quite a few fuctions with ref, and naturally started to panic
when one of them did'nt work!

Firstly , i need to use ref because i have a 2 datagrid views that have
to be filled more or less the same way , and i could have a 3rd one
soon. Whatever is common between the dgvs goes into one function and
then obviously has to change the datagridview passed to it.

I just tried the whole thing without the ref keyword both in the
function and when i call it. and i GET THE SAME EXCEPTION.

the exception occurs inside the function on the first line :
public void FillColumns(ref DataGridView theDGV)
{
theDGV.ColumnCount =
dataSet.Tables["customers"].Columns.Count; //THIS IS THE LINE.

VS says :

NullRefrenceException was not handled
Object reference not set to an instance of an object.]
Troubleshooting tips :
use the 'new' keyword to create an object of the instance (????
check to determine if the object is null before calling the method

i have Form1 , the datagridview is ON Form1 and FillColumns() is in
Form1.cs

In Form1.Designer.cs :
the dgv is declared like this : private
System.Windows.Forms.DataGridView dataGridView2;

and its properties are set like this :
this.dataGridView2.ColumnHeadersHeightSizeMode =
System.Windows.Forms.DataGridViewColumnHeadersHei ghtSizeMode.AutoSize;
this.dataGridView2.Location = new System.Drawing.Point(5, 50);
this.dataGridView2.Name = "dataGridView2";

so why is it null!

thanks

Gideon

On Nov 23, 5:18 am, "Kevin Spencer" <s...@uce.gov>
wrote:----------------------------------------
Kevin Spencer <s...@uce.govwrote:
A DataGridView is a reference type. There is no need to pass it by
ref.
Now, often people *do* use ref when they don't need to, but without
seeing the OP's method, we can't tell whether that's the case or not.
--------------------------------------
>>Peter Duniho wrote:
What line of code does thedebugger say has the null reference? What
variable in that line of
code is
the one that is null? And why is it that you expect that variable to
NOT be
null? --------------------------------------
>>cbmeeks wrote :is the dataGridView2 in the same scope as the function?

In other words, are you calling that function from a class that doesn't
know where the dgv is?

Nov 23 '06 #14
Kevin Spencer <sp**@uce.govwrote:
Congratulations! We've all been there before. I am embarassed on a daily
basis by things that only I know I did!
That's one of the interesting things about having open source projects
available on the web - *anyone* can see how awful your code is. Having
recently found some clangers in my miscutil library, I'm very red in
the face.

Still, so long as we learn lessons from it... in this case, it's a
retrospective lesson that unit tests make a huge difference :)

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Nov 23 '06 #15

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

38
by: jrlen balane | last post by:
basically what the code does is transmit data to a hardware and then receive data that the hardware will transmit. import serial import string import time from struct import * ser =...
1
by: Randell D. | last post by:
HELP! I am determined to stick with this... I'm getting there... for those who haven't read my earlier posts, I'm createing what should be a simple function that I can call to check that...
5
by: Rob Somers | last post by:
Hey all I am writing a program to keep track of expenses and so on - it is not a school project, I am learning C as a hobby - At any rate, I am new to structs and reading and writing to files,...
3
by: Peter | last post by:
Hello Thanks for reviewing my question. I would like to know how can I programmatically select a node Thanks in Advanc Peter
0
by: Tal Sharfi | last post by:
Hi everyone I recently had the need for StringGrid object same as the one that Delphi has. An object that helps show lists of other objects in a simple grid. I searched the news groups and...
1
by: jm | last post by:
Easy probably, please read on. I know some of you have commented already about some of my socket question. I appreciate that. I have a Form1: static void Main() { Application.Run(new...
9
by: NewInTheGame | last post by:
I'm a beginner in VB.Net. I'm actually taking a class & so far I understand everything, but I suck when it comes to arrays. I'm sure that this is simple (I'm ashamed of asking :oops: )... I...
73
by: Claudio Grondi | last post by:
In the process of learning about some deeper details of Python I am curious if it is possible to write a 'prefix' code assigning to a and b something special, so, that Python gets trapped in an...
17
by: Chris M. Thomasson | last post by:
I use the following technique in all of my C++ projects; here is the example code with error checking omitted for brevity: _________________________________________________________________ /*...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.