Hi
I am a VB6 programmer now planed to swith over to C#. Well, so far the conceptual understanding of connection, adapter, dataset, datatable, datarow, and dataview is concerned I get it.
But I am still unable to do the navigational operations (movefirst, movelast, moveprevious, movenet) on a from after binding controls and I am still confuse that if I add buttons for Add, Update, and Delete operations on that form what code I will write for them to change not only dataset but actual databse too.
Thank you so very much.
Loading
Vijaya KadiyalaPosted Apr 13, 2008, 1:20 PM
Hi,
I agree with the above post. .Net has lot of features which you can use reduce the development effort.
http://www.csharphelp.com/archives/archive236.html
Thanks -- Vj
Bechir BejaouiPosted Apr 13, 2008, 5:01 AM
dataGridView.DataSet = yourdataset;
dataGridView.DataMember = yourDataSet.Tables["TableName"].TableName;