473,289 Members | 1,840 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,289 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 2656
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: MeoLessi9 | last post by:
I have VirtualBox installed on Windows 11 and now I would like to install Kali on a virtual machine. However, on the official website, I see two options: "Installer images" and "Virtual machines"....
0
by: DolphinDB | last post by:
The formulas of 101 quantitative trading alphas used by WorldQuant were presented in the paper 101 Formulaic Alphas. However, some formulas are complex, leading to challenges in calculation. Take...
0
by: Aftab Ahmad | last post by:
Hello Experts! I have written a code in MS Access for a cmd called "WhatsApp Message" to open WhatsApp using that very code but the problem is that it gives a popup message everytime I clicked on...
0
by: Aftab Ahmad | last post by:
So, I have written a code for a cmd called "Send WhatsApp Message" to open and send WhatsApp messaage. The code is given below. Dim IE As Object Set IE =...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: marcoviolo | last post by:
Dear all, I would like to implement on my worksheet an vlookup dynamic , that consider a change of pivot excel via win32com, from an external excel (without open it) and save the new file into a...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...

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.