nalinix
December 7th, 2006, 11:59 AM
I have been working in VC++ .NET since quite a few days. I got a problem that I am unable to solve..I have done bulk of it but I am not able to finish it off.
I have created a GUI and connected a database to it. I am reading seeing tha database in the GUI. Now, I successfully converted the table into XML. I am able to display the XML code in a text box I created.
I did this by using...
outputTextBox->Text = playersDataSet->GetXml(), S"\r\n" );
where players data set is the table. Now, I am kind of stuck here.
when I edit the XML in the text box, the table must get updated.
For example, if i edit a player's name from John to JIm in the XML output in the textbox and event handle that, the original access database must get updated with this change...can anybody tell me what I am missing??
I have created a GUI and connected a database to it. I am reading seeing tha database in the GUI. Now, I successfully converted the table into XML. I am able to display the XML code in a text box I created.
I did this by using...
outputTextBox->Text = playersDataSet->GetXml(), S"\r\n" );
where players data set is the table. Now, I am kind of stuck here.
when I edit the XML in the text box, the table must get updated.
For example, if i edit a player's name from John to JIm in the XML output in the textbox and event handle that, the original access database must get updated with this change...can anybody tell me what I am missing??