Hi,
I have a datagrid which source is a dataset :
dgFields.Rows.DataMember = m_dsFields.Tables(0).TableName
dgFields.Rows.DataSource = m_dsFields
Now my values are displayed properly and when I add a row I call the
follwing :
Dim dtChanged As New DataTable
dtChanged = m_dsFields.Tables(0).GetChanges(DataRowState.Added )
but dtChanged is always equal to Nothing.
What am I doing wrong ?
thx 24 5194
Sam,
Can you show how you show us how you add the datarow, yesterday there was
somebody who thought he added it, however that was not done, there was alone
a new datarow created.
Cor
humm...
To be honnest I don't add anything. At the bottom of my datagrid there
is a new line so I fill in the txtboxes and that's it. I would assume
then that the changes made to the datagrid are reflected on to the
datasource, but I might be wrong.
The code above is all I do. What is missing ?
Actually it might be important that I mention that I've tried the exact
same code with the parameters DataRowState.Modified and
DatarowState.Deleted, and that in both cases, my dtChanged is filled
with the right lines !!!!
Therefore I believe my code is correct, however something is wrong with
DatarowState.Added or I'm missing something here !
Sam,
You add probably a row using the datagrid.
Set this before your get changes than probably it will go.
\\\
BindingContext(m_dsFields.Tables(0)).EndCurrentEdi t
///
This pushes the changes from the datagrid into the dataset when there has
not been a rowchange.
I hope this helps,
Cor
Cor,
I've done that:
Dim dtChanged As New DataTable
BindingContext(m_dsFields.Tables(0)).EndCurrentEdi t()
dtChanged = m_dsFields.Tables(0).GetChanges(DataRowState.Added )
But dtChanged is still Nothing :( I really don't understand why. That's
a pain !
What does BindingContext here ?
Cor,
Actually I've noticed that it works with DataRowState.Modified. I mean
that even newly added rows are contained in dtChanged. I guess I can
use that if I can't get the Added method to work
Sam,
Try this sample partially with your code, I had not any problem, it works
in my opinion as you and I would expect.
\\\needs a datagrid and a button on a form
Dim dt As New DataTable
Private Sub Form1_Load(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles MyBase.Load
dt.Columns.Add("Place")
dt.Columns.Add("Name")
dt.Columns.Add("Key")
dt.LoadDataRow(New Object() {"Whatever", "Sam", "1"}, True)
dt.LoadDataRow(New Object() {"Whatelse", "Cor", "2"}, True)
DataGrid1.DataSource = dt
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button1.Click
Dim dtChanged As New DataTable
BindingContext(dt).EndCurrentEdit()
dtChanged = dt.GetChanges(DataRowState.Added)
DataGrid1.DataSource = Nothing
DataGrid1.DataSource = dtChanged
End Sub
///
I hope this helps,
Cor
Thx Cor,
unfortunately it doesn't work for me. My dtChanged is still Nothing....
I'm giving up, I will use DataRowState.Modified instead...
Sam, unfortunately it doesn't work for me. My dtChanged is still Nothing.... I'm giving up, I will use DataRowState.Modified instead...
Did you try my sample, because it shows that dtChanged in the datagrid.
Cor
well I've tried your code in my program :
Dim dtChanged As New DataTable
BindingContext(m_dsFields.Tables(0)).EndCurrentEdi t()
dtChanged = m_dsFields.Tables(0).GetChanges(DataRowState.Added )
dgFields.Rows.DataSource = Nothing
dgFields.Rows.DataSource = dtChanged
and unfortunately dtChanged still is Nothing !
Sam,
However as in my first question, how you are so sure you added a row?
Cor
I'd like to know what you mean by 'adding a row'.
I add stuff in my cells of the last row of my datagrid (the one marked
by a *) From the moment I add things in this row, I would assume that the
datasource of this grid should be modified (in fact
DataRowState.Modified works) but apparentely it doesn't detect an added
row
Sam.
Sam,
Why not try my sample complete?
Cor
Because I trust you, I know your code is working, but the thing is that
my code is the same as yours !
Sam,
There is a new Pope, that is not a miracle, so what is the miracle here.
What Net version are you using.
Cor
Are you sure that you click the star
enter data
click the pencil
Cor
er.. no I didn't know I had to click the pencil ..... I'll try
thx
Cor,
I've tried that but dtChanged is still nothing.
my code :
Dim dtChanged As New DataTable
BindingContext(m_dsFields.Tables(0)).EndCurrentEdi t()
dtChanged = m_dsFields.Tables(0).GetChanges(DataRowState.Added )
dgFields.Rows.DataSource = Nothing
dgFields.Rows.DataSource = dtChanged
The thing to note here is that m_dsFields contains the new row ! But
dtChanged does not. So this is weird. Maybe I should have mentionned
that I'm not using the microsoft datagrid but a third party control
(FlyGrid). However this control should not have any influence on
DataRowState.Added and as I said, m_dsFields is properly modified
anyway.
Sam,
Why not try it with a normal grid and otherwise. dtChanged = m_dsFields.Tables(0).GetChanges(DataRowState.Added )
messagebox.show(dtChanged.Rows.Count.ToString)
dgFields.Rows.DataSource = Nothing dgFields.Rows.DataSource = dtChanged
Cor
"Sam" <sa**************@voila.fr> schreef in bericht
news:11*********************@f14g2000cwb.googlegro ups.com... Cor, I've tried that but dtChanged is still nothing. my code :
Dim dtChanged As New DataTable BindingContext(m_dsFields.Tables(0)).EndCurrentEdi t() dtChanged = m_dsFields.Tables(0).GetChanges(DataRowState.Added ) dgFields.Rows.DataSource = Nothing dgFields.Rows.DataSource = dtChanged
The thing to note here is that m_dsFields contains the new row ! But dtChanged does not. So this is weird. Maybe I should have mentionned that I'm not using the microsoft datagrid but a third party control (FlyGrid). However this control should not have any influence on DataRowState.Added and as I said, m_dsFields is properly modified anyway.
I have to use this grid.
I cant display the number of rows since dtChanged is nothing.
Sam,
You make me crazy (not really) , can you try this one?
m_dsFields.Tables(0).Rows.Add(m_dsFields.Tables(0) .NewRow)
Dim dtChanged As New DataTable
dtChanged = m_dsFields.Tables(0).GetChanges(DataRowState.Added )
messagebox.show(dtChanged.Rows.Count.ToString)
Cor
yes that works !
Would that mean it comes from the grid ? I'll have to look into this...
thx
Cor,
For your information, the Flygrid control HAS a bug, which is DataAdded
can't be used at the moment with GetChanges. It will be fixed in the
next release according to the guys who developped it. So much time
spent on this crap for nothing.... sorry. This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Paul |
last post by:
I am writing a DataBase Client/Server pair of applications in C#. The
client registers a query, the server populates a dataset and its
contents...
|
by: Marty |
last post by:
In winforms, I can bind a datagrid to a dataset. When the user wants to
submit changes, it's easy to see what has changed with the DataSet...
|
by: Sam |
last post by:
Hi,
Some people are going to say I drive them crazy again...but here we
go...
I have the following code :
...
|
by: George |
last post by:
Got a question about the side effect of DataAdapter.Update() and
DataTable.GetChanges().
Say I set up a DataTable and a DataAdapter in a class. ...
|
by: matt |
last post by:
hello,
i have a web app that allows users to query our oracle db and produce a
dataset of report data. they then have the option to serialize...
|
by: daranee |
last post by:
Documentation on GetChanges say the following: Gets a copy of the DataSet that contains all changes made to it since it was loaded or AcceptChanges...
|
by: Matteo Migliore |
last post by:
Hi.
I writed a method that takes two DataTable with same schema
and return a third DataTable that:
- insert new rows from "compare" DataTable
-...
|
by: LoanB |
last post by:
Hey guys need some info here.
I am adding, updating and deleting data on a datagrid. I pass the datagrid's datasource (datatable dt) to my data...
|
by: John Sheppard |
last post by:
Hello there,
I have the following code; I do this as a work around for a
dataset.haschanges method which doesnt appear to work correctly either
...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was...
|
by: Matthew3360 |
last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function.
Here is my code.
...
|
by: Arjunsri |
last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
|
by: Matthew3360 |
last post by:
Hi,
I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...
|
by: Oralloy |
last post by:
Hello Folks,
I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA.
My problem (spelled failure) is with the...
|
by: Carina712 |
last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand....
|
by: BLUEPANDA |
last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS...
| |