Link to home
Start Free TrialLog in
Avatar of H-SC
H-SCFlag for United States of America

asked on

Send Form Data Changes To Database

I have a form that gets its data through datasets but gets filtered down to only one record via the following code:

 Dim tempView As Data.DataView
        tempView = New Data.DataView(myDataSet.Tables("main"))
        tempView.RowFilter = "ctl_num = " + mycombobox.SelectedValue.ToString
        name.Text = tempView(0).Item("nameonform").ToString()
        systemdate.Text = tempView(0).Item("date_added").ToString()
        fullname.Text = tempView(0).Item("full_name").ToString()
        active.CheckState = tempView(0).Item("active").ToString()

After the user edits the record I am trying to send those changes to update the database.  I thought that this could be done by writing an update command to the adapter.  How can this be done??
ASKER CERTIFIED SOLUTION
Avatar of armoghan
armoghan
Flag of Pakistan image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of H-SC

ASKER

armoqhan,

Perfect!  That works great  many thanks