473,395 Members | 1,823 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,395 software developers and data experts.

datagridview - how to retrieve data help...

How can I retrieve all of the data from a datagridview?
Any help is appreciated.
Thanks,
Trint

Jun 11 '07 #1
9 2661
Trint,

What do you mean by all of the data? You can always get the DataSource
and use the DataMember properties to get the actual data.

Are you setting the source of the data, or can it be anything? By that,
I mean, are you always using a data set to show the data, or is it possible
that other data objects are used?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"trint" <tr***********@gmail.comwrote in message
news:11*********************@g4g2000hsf.googlegrou ps.com...
How can I retrieve all of the data from a datagridview?
Any help is appreciated.
Thanks,
Trint

Jun 11 '07 #2
On Jun 11, 11:00 am, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guard.caspershouse.comwrote:
Trint,

What do you mean by all of the data? You can always get the DataSource
and use the DataMember properties to get the actual data.

Are you setting the source of the data, or can it be anything? By that,
I mean, are you always using a data set to show the data, or is it possible
that other data objects are used?

--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard.caspershouse.com

"trint" <trinity.sm...@gmail.comwrote in message

news:11*********************@g4g2000hsf.googlegrou ps.com...
How can I retrieve all of the data from a datagridview?
Any help is appreciated.
Thanks,
Trint- Hide quoted text -

- Show quoted text -
My datagridview contains products information

code/name/price/salePrice/cost/overSize/stock/change(button)/
delete(button)

I want to know how to just retrieve the information displayed in the
datagridview so I can check
for changes or if something is deleted to send back to my sql server
tables.
Thanks,
Trint

Jun 11 '07 #3
Trint,

Right, but the grid has to be bound to something, like a dataset, a
collection, or something of that nature. It doesn't just magically get the
information. You should find out what the grid is bound to, and work with
that.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"trint" <tr***********@gmail.comwrote in message
news:11**********************@c77g2000hse.googlegr oups.com...
On Jun 11, 11:00 am, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guard.caspershouse.comwrote:
>Trint,

What do you mean by all of the data? You can always get the
DataSource
and use the DataMember properties to get the actual data.

Are you setting the source of the data, or can it be anything? By
that,
I mean, are you always using a data set to show the data, or is it
possible
that other data objects are used?

--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard.caspershouse.com

"trint" <trinity.sm...@gmail.comwrote in message

news:11*********************@g4g2000hsf.googlegro ups.com...
How can I retrieve all of the data from a datagridview?
Any help is appreciated.
Thanks,
Trint- Hide quoted text -

- Show quoted text -

My datagridview contains products information

code/name/price/salePrice/cost/overSize/stock/change(button)/
delete(button)

I want to know how to just retrieve the information displayed in the
datagridview so I can check
for changes or if something is deleted to send back to my sql server
tables.
Thanks,
Trint

Jun 11 '07 #4
On Jun 11, 11:40 am, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guard.caspershouse.comwrote:
Trint,

Right, but the grid has to be bound to something, like a dataset, a
collection, or something of that nature. It doesn't just magically get the
information. You should find out what the grid is bound to, and work with
that.

--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard.caspershouse.com

"trint" <trinity.sm...@gmail.comwrote in message

news:11**********************@c77g2000hse.googlegr oups.com...
On Jun 11, 11:00 am, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guard.caspershouse.comwrote:
>Trint,
What do you mean by all of the data? You can always get the
DataSource
and use the DataMember properties to get the actual data.
Are you setting the source of the data, or can it be anything? By
that,
I mean, are you always using a data set to show the data, or is it
possible
that other data objects are used?
--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard.caspershouse.com
"trint" <trinity.sm...@gmail.comwrote in message
>news:11*********************@g4g2000hsf.googlegro ups.com...
How can I retrieve all of the data from a datagridview?
Any help is appreciated.
Thanks,
Trint- Hide quoted text -
- Show quoted text -
My datagridview contains products information
code/name/price/salePrice/cost/overSize/stock/change(button)/
delete(button)
I want to know how to just retrieve the information displayed in the
datagridview so I can check
for changes or if something is deleted to send back to my sql server
tables.
Thanks,
Trint- Hide quoted text -

- Show quoted text -
Here is how I am binding to a datasource:

table0.Locale = System.Globalization.CultureInfo.InvariantCulture;
dataAdapter0.Fill(table0);
bindingSource7.DataSource = table0;
dataGridView7.DataSource = bindingSource7;

this.dataGridView7.Columns[0].Width = 75;
this.dataGridView7.Columns[1].Width = 75;
this.dataGridView7.Columns[2].Width = 75;
this.dataGridView7.Columns[3].Width = 75;
this.dataGridView7.Columns[4].Width = 75;
this.dataGridView7.Columns[5].Width = 75;
this.dataGridView7.Columns[6].Width = 75;
this.dataGridView7.Columns[7].Width = 75;
this.dataGridView7.Columns[8].Width = 75;
this.dataGridView7.Columns["Column3"].Width = 75;
this.dataGridView7.Columns["Column5"].Width = 75;

But this is just to display the data.
Thanks,
Trint

Jun 11 '07 #5
On Jun 11, 2:07 pm, trint <trinity.sm...@gmail.comwrote:
On Jun 11, 11:40 am, "Nicholas Paldino [.NET/C# MVP]"

<m...@spam.guard.caspershouse.comwrote:
Trint,
Right, but the grid has to be bound to something, like a dataset, a
collection, or something of that nature. It doesn't just magically get the
information. You should find out what the grid is bound to, and work with
that.
--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard.caspershouse.com
"trint" <trinity.sm...@gmail.comwrote in message
news:11**********************@c77g2000hse.googlegr oups.com...
On Jun 11, 11:00 am, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guard.caspershouse.comwrote:
>>Trint,
> What do you mean by all of the data? You can always get the
>DataSource
>and use the DataMember properties to get the actual data.
> Are you setting the source of the data, or can it be anything? By
>that,
>I mean, are you always using a data set to show the data, or is it
>possible
>that other data objects are used?
>--
> - Nicholas Paldino [.NET/C# MVP]
> - m...@spam.guard.caspershouse.com
>"trint" <trinity.sm...@gmail.comwrote in message
>>news:11*********************@g4g2000hsf.googlegr oups.com...
How can I retrieve all of the data from a datagridview?
Any help is appreciated.
Thanks,
>Trint- Hide quoted text -
>- Show quoted text -
My datagridview contains products information
code/name/price/salePrice/cost/overSize/stock/change(button)/
delete(button)
I want to know how to just retrieve the information displayed in the
datagridview so I can check
for changes or if something is deleted to send back to my sql server
tables.
Thanks,
>Trint- Hide quoted text -
- Show quoted text -

Here is how I am binding to a datasource:

table0.Locale = System.Globalization.CultureInfo.InvariantCulture;
dataAdapter0.Fill(table0);
bindingSource7.DataSource = table0;
dataGridView7.DataSource = bindingSource7;

this.dataGridView7.Columns[0].Width = 75;
this.dataGridView7.Columns[1].Width = 75;
this.dataGridView7.Columns[2].Width = 75;
this.dataGridView7.Columns[3].Width = 75;
this.dataGridView7.Columns[4].Width = 75;
this.dataGridView7.Columns[5].Width = 75;
this.dataGridView7.Columns[6].Width = 75;
this.dataGridView7.Columns[7].Width = 75;
this.dataGridView7.Columns[8].Width = 75;
this.dataGridView7.Columns["Column3"].Width = 75;
this.dataGridView7.Columns["Column5"].Width = 75;

But this is just to display the data.
Thanks,Trint- Hide quoted text -

- Show quoted text -
Here is what I want to do, but it doesn't allow it:

string selectedRows = string.Empty;
dataGridView7.SelectAll();
//dataGridView7.SelectedRows.ToString();
selectedRows = dataGridView7.SelectedRows.ToString();

Any help is appreciated.
Thanks,
Trint

Jun 11 '07 #6
Trint,

Why not just work with table0?

--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"trint" <tr***********@gmail.comwrote in message
news:11**********************@c77g2000hse.googlegr oups.com...
On Jun 11, 2:07 pm, trint <trinity.sm...@gmail.comwrote:
>On Jun 11, 11:40 am, "Nicholas Paldino [.NET/C# MVP]"

<m...@spam.guard.caspershouse.comwrote:
>Trint,
Right, but the grid has to be bound to something, like a dataset, a
collection, or something of that nature. It doesn't just magically get
the
information. You should find out what the grid is bound to, and work
with
that.
--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard.caspershouse.com
"trint" <trinity.sm...@gmail.comwrote in message
>news:11**********************@c77g2000hse.googleg roups.com...
On Jun 11, 11:00 am, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guard.caspershouse.comwrote:
Trint,
> What do you mean by all of the data? You can always get the
DataSource
and use the DataMember properties to get the actual data.
> Are you setting the source of the data, or can it be anything?
By
that,
I mean, are you always using a data set to show the data, or is it
possible
that other data objects are used?
>--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard.caspershouse.com
>"trint" <trinity.sm...@gmail.comwrote in message
>>news:11*********************@g4g2000hsf.googlegr oups.com...
How can I retrieve all of the data from a datagridview?
Any help is appreciated.
Thanks,
Trint- Hide quoted text -
>- Show quoted text -
My datagridview contains products information
code/name/price/salePrice/cost/overSize/stock/change(button)/
delete(button)
I want to know how to just retrieve the information displayed in the
datagridview so I can check
for changes or if something is deleted to send back to my sql server
tables.
Thanks,
Trint- Hide quoted text -
- Show quoted text -

Here is how I am binding to a datasource:

table0.Locale = System.Globalization.CultureInfo.InvariantCulture;
dataAdapter0.Fill(table0);
bindingSource7.DataSource = table0;
dataGridView7.DataSource = bindingSource7;

this.dataGridView7.Columns[0].Width = 75;
this.dataGridView7.Columns[1].Width = 75;
this.dataGridView7.Columns[2].Width = 75;
this.dataGridView7.Columns[3].Width = 75;
this.dataGridView7.Columns[4].Width = 75;
this.dataGridView7.Columns[5].Width = 75;
this.dataGridView7.Columns[6].Width = 75;
this.dataGridView7.Columns[7].Width = 75;
this.dataGridView7.Columns[8].Width = 75;
this.dataGridView7.Columns["Column3"].Width = 75;
this.dataGridView7.Columns["Column5"].Width = 75;

But this is just to display the data.
Thanks,Trint- Hide quoted text -

- Show quoted text -

Here is what I want to do, but it doesn't allow it:

string selectedRows = string.Empty;
dataGridView7.SelectAll();
//dataGridView7.SelectedRows.ToString();
selectedRows = dataGridView7.SelectedRows.ToString();

Any help is appreciated.
Thanks,
Trint

Jun 11 '07 #7
On Jun 11, 4:37 pm, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guard.caspershouse.comwrote:
Trint,

Why not just work with table0?

--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard.caspershouse.com

"trint" <trinity.sm...@gmail.comwrote in message

news:11**********************@c77g2000hse.googlegr oups.com...
On Jun 11, 2:07 pm,trint<trinity.sm...@gmail.comwrote:
On Jun 11, 11:40 am, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guard.caspershouse.comwrote:
Trint,
Right, but the grid has to be bound to something, like a dataset, a
collection, or something of that nature. It doesn't just magically get
the
information. You should find out what the grid is bound to, and work
with
that.
--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard.caspershouse.com
"trint" <trinity.sm...@gmail.comwrote in message
news:11**********************@c77g2000hse.googlegr oups.com...
On Jun 11, 11:00 am, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guard.caspershouse.comwrote:
>>Trint,
> What do you mean by all of the data? You can always get the
>DataSource
>and use the DataMember properties to get the actual data.
> Are you setting the source of the data, or can it be anything?
>By
>that,
>I mean, are you always using a data set to show the data, or is it
>possible
>that other data objects are used?
>--
> - Nicholas Paldino [.NET/C# MVP]
> - m...@spam.guard.caspershouse.com
>"trint" <trinity.sm...@gmail.comwrote in message
>>news:11*********************@g4g2000hsf.googlegr oups.com...
How can I retrieve all of the data from a datagridview?
Any help is appreciated.
Thanks,
>Trint- Hide quoted text -
>- Show quoted text -
My datagridview contains products information
code/name/price/salePrice/cost/overSize/stock/change(button)/
delete(button)
I want to know how to just retrieve the information displayed in the
datagridview so I can check
for changes or if something is deleted to send back to my sql server
tables.
Thanks,
>Trint- Hide quoted text -
- Show quoted text -
Here is how I am binding to a datasource:
table0.Locale = System.Globalization.CultureInfo.InvariantCulture;
dataAdapter0.Fill(table0);
bindingSource7.DataSource = table0;
dataGridView7.DataSource = bindingSource7;
this.dataGridView7.Columns[0].Width = 75;
this.dataGridView7.Columns[1].Width = 75;
this.dataGridView7.Columns[2].Width = 75;
this.dataGridView7.Columns[3].Width = 75;
this.dataGridView7.Columns[4].Width = 75;
this.dataGridView7.Columns[5].Width = 75;
this.dataGridView7.Columns[6].Width = 75;
this.dataGridView7.Columns[7].Width = 75;
this.dataGridView7.Columns[8].Width = 75;
this.dataGridView7.Columns["Column3"].Width = 75;
this.dataGridView7.Columns["Column5"].Width = 75;
But this is just to display the data.
Thanks,Trint- Hide quoted text -
- Show quoted text -
Here is what I want to do, but it doesn't allow it:
string selectedRows = string.Empty;
dataGridView7.SelectAll();
//dataGridView7.SelectedRows.ToString();
selectedRows = dataGridView7.SelectedRows.ToString();
Any help is appreciated.
Thanks,
Trint- Hide quoted text -

- Show quoted text -
I'm not sure I understand what you mean...Don't I first have to know
what has changed
and how to get it from the grid? I will work with the table after I
know what I have in the datagridview.
What am I missing?
Thanks,
Trint

Jun 11 '07 #8
Trint,

If you have set the data source of the grid to the table, then when you
make changes in the grid, the DataTable (table0) will be updated
accordingly.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"trint" <tr***********@gmail.comwrote in message
news:11**********************@w5g2000hsg.googlegro ups.com...
On Jun 11, 4:37 pm, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guard.caspershouse.comwrote:
>Trint,

Why not just work with table0?

--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard.caspershouse.com

"trint" <trinity.sm...@gmail.comwrote in message

news:11**********************@c77g2000hse.googleg roups.com...
On Jun 11, 2:07 pm,trint<trinity.sm...@gmail.comwrote:
On Jun 11, 11:40 am, "Nicholas Paldino [.NET/C# MVP]"
><m...@spam.guard.caspershouse.comwrote:
Trint,
Right, but the grid has to be bound to something, like a
dataset, a
collection, or something of that nature. It doesn't just magically
get
the
information. You should find out what the grid is bound to, and
work
with
that.
--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard.caspershouse.com
"trint" <trinity.sm...@gmail.comwrote in message
>news:11**********************@c77g2000hse.googleg roups.com...
On Jun 11, 11:00 am, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guard.caspershouse.comwrote:
Trint,
> What do you mean by all of the data? You can always get the
DataSource
and use the DataMember properties to get the actual data.
> Are you setting the source of the data, or can it be
anything?
By
that,
I mean, are you always using a data set to show the data, or is
it
possible
that other data objects are used?
>--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard.caspershouse.com
>"trint" <trinity.sm...@gmail.comwrote in message
>>news:11*********************@g4g2000hsf.googlegr oups.com...
How can I retrieve all of the data from a datagridview?
Any help is appreciated.
Thanks,
Trint- Hide quoted text -
>- Show quoted text -
My datagridview contains products information
code/name/price/salePrice/cost/overSize/stock/change(button)/
delete(button)
I want to know how to just retrieve the information displayed in
the
datagridview so I can check
for changes or if something is deleted to send back to my sql
server
tables.
Thanks,
Trint- Hide quoted text -
- Show quoted text -
>Here is how I am binding to a datasource:
>table0.Locale = System.Globalization.CultureInfo.InvariantCulture;
dataAdapter0.Fill(table0);
bindingSource7.DataSource = table0;
dataGridView7.DataSource = bindingSource7;
> this.dataGridView7.Columns[0].Width = 75;
this.dataGridView7.Columns[1].Width = 75;
this.dataGridView7.Columns[2].Width = 75;
this.dataGridView7.Columns[3].Width = 75;
this.dataGridView7.Columns[4].Width = 75;
this.dataGridView7.Columns[5].Width = 75;
this.dataGridView7.Columns[6].Width = 75;
this.dataGridView7.Columns[7].Width = 75;
this.dataGridView7.Columns[8].Width = 75;
this.dataGridView7.Columns["Column3"].Width = 75;
this.dataGridView7.Columns["Column5"].Width = 75;
>But this is just to display the data.
Thanks,Trint- Hide quoted text -
>- Show quoted text -
Here is what I want to do, but it doesn't allow it:
string selectedRows = string.Empty;
dataGridView7.SelectAll();
//dataGridView7.SelectedRows.ToString();
selectedRows = dataGridView7.SelectedRows.ToString();
Any help is appreciated.
Thanks,
Trint- Hide quoted text -

- Show quoted text -

I'm not sure I understand what you mean...Don't I first have to know
what has changed
and how to get it from the grid? I will work with the table after I
know what I have in the datagridview.
What am I missing?
Thanks,
Trint

Jun 11 '07 #9
On Jun 11, 5:17 pm, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guard.caspershouse.comwrote:
Trint,

If you have set the data source of the grid to the table, then when you
make changes in the grid, the DataTable (table0) will be updated
accordingly.

--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard.caspershouse.com

"trint" <trinity.sm...@gmail.comwrote in message

news:11**********************@w5g2000hsg.googlegro ups.com...
On Jun 11, 4:37 pm, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guard.caspershouse.comwrote:
>Trint,
Why not just work with table0?
--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard.caspershouse.com
"trint" <trinity.sm...@gmail.comwrote in message
>news:11**********************@c77g2000hse.googleg roups.com...
On Jun 11, 2:07 pm,trint<trinity.sm...@gmail.comwrote:
On Jun 11, 11:40 am, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guard.caspershouse.comwrote:
Trint,
Right, but the grid has to be bound to something, like a
dataset, a
collection, or something of that nature. It doesn't just magically
get
the
information. You should find out what the grid is bound to, and
work
with
that.
--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard.caspershouse.com
"trint" <trinity.sm...@gmail.comwrote in message
news:11**********************@c77g2000hse.googlegr oups.com...
On Jun 11, 11:00 am, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guard.caspershouse.comwrote:
>>Trint,
> What do you mean by all of the data? You can always get the
>DataSource
>and use the DataMember properties to get the actual data.
> Are you setting the source of the data, or can it be
>anything?
>By
>that,
>I mean, are you always using a data set to show the data, or is
>it
>possible
>that other data objects are used?
>--
> - Nicholas Paldino [.NET/C# MVP]
> - m...@spam.guard.caspershouse.com
>"trint" <trinity.sm...@gmail.comwrote in message
>>news:11*********************@g4g2000hsf.googlegr oups.com...
How can I retrieve all of the data from a datagridview?
Any help is appreciated.
Thanks,
>Trint- Hide quoted text -
>- Show quoted text -
My datagridview contains products information
code/name/price/salePrice/cost/overSize/stock/change(button)/
delete(button)
I want to know how to just retrieve the information displayed in
the
datagridview so I can check
for changes or if something is deleted to send back to my sql
server
tables.
Thanks,
>Trint- Hide quoted text -
- Show quoted text -
Here is how I am binding to a datasource:
table0.Locale = System.Globalization.CultureInfo.InvariantCulture;
dataAdapter0.Fill(table0);
bindingSource7.DataSource = table0;
dataGridView7.DataSource = bindingSource7;
this.dataGridView7.Columns[0].Width = 75;
this.dataGridView7.Columns[1].Width = 75;
this.dataGridView7.Columns[2].Width = 75;
this.dataGridView7.Columns[3].Width = 75;
this.dataGridView7.Columns[4].Width = 75;
this.dataGridView7.Columns[5].Width = 75;
this.dataGridView7.Columns[6].Width = 75;
this.dataGridView7.Columns[7].Width = 75;
this.dataGridView7.Columns[8].Width = 75;
this.dataGridView7.Columns["Column3"].Width = 75;
this.dataGridView7.Columns["Column5"].Width = 75;
But this is just to display the data.
Thanks,Trint- Hide quoted text -
- Show quoted text -
Here is what I want to do, but it doesn't allow it:
string selectedRows = string.Empty;
dataGridView7.SelectAll();
//dataGridView7.SelectedRows.ToString();
selectedRows = dataGridView7.SelectedRows.ToString();
Any help is appreciated.
Thanks,
Trint- Hide quoted text -
- Show quoted text -
I'm not sure I understand what you mean...Don't I first have to know
what has changed
and how to get it from the grid? I will work with the table after I
know what I have in the datagridview.
What am I missing?
Thanks,
Trint- Hide quoted text -

- Show quoted text -
Can you please give me an example?

Jun 12 '07 #10

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

Similar topics

5
by: Vanessa | last post by:
I have a question, is that any other way to retrieve data from another webpage besides using XML object? Because I am using XML object now but give me so much problems. If I used...
1
by: funcSter | last post by:
I want to retrieve data from an Excel file like how I would with a database. I understand that I would have to use OLE DB. Somehow I think I cannot get the connection string right, as the bit of...
1
by: abc my vclass | last post by:
How can I make DataGridView retrieve the table structure from DAL or BLL for design?
5
by: ggk517 | last post by:
We are trying to develop an Engineering application using PHP, Javascript with Informix as the back-end. Is it possible to retrieve data using Javascript but by accessing the Database. Say...
3
by: karthigaj | last post by:
Hi, Happy new Year... i need to retrieve the data from the web server which is developed using HTML and i need to process those data in c but i should not use any CGIs. Can anybody help me...
0
by: sghante | last post by:
Here is a datagridview whose data need to be displayed as follows: constant1 constVal1 constVal1 constVal1 constVal1 constVal1 constVal1 constVal1 constVal1 ...
12
lifeisgreat20009
by: lifeisgreat20009 | last post by:
I am a newbie to Struts and JSP...I have been working on the code below for 5 hours now..I googled a lot but couldn't get much help so finally I am here.. Hoping of getting my problem solved. Please...
0
by: lenniekuah | last post by:
Hi Friends, I need your help. Please help me. I am trying to retrieve data from Excel Spreadsheet to fill the DataGridView for display prior to updating SQL SERVER with individual DataGridView...
0
by: lenniekuah | last post by:
Hullo Good Guys, I need your help. Please help me. I am very surprise of this error message: Index was out of range. Must be non-negative and less thatnt he size of the collection. Parameter name...
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?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.