I am in the process of converting an in-house web app to a winform app for disconnected reasons and I hit the following snag.
In the Function SaveMe() on the webapp there is the following code on the Person.ascx.vb page -->
//get dataset from session
Dim dsPerson As Data.DataSet = CType(Session.Item("Person" & Me.UniqueID), DataSet)
//if no rows in dataset, add
If dsPerson.Tables(0).Rows.Count = 0 Then
Dim rowPerson As Data.DataRow = dsPerson.Tables(0).NewRow
dsPerson.Tables(0).Rows.Add(FillPersonRow(rowPerson))
Else
//otherwise update
....more code here
The part I am stuck on is how to logically create a dataset on a WinForm app?
Should I just scrape all the fields and throw them into a DataSet? How(this is what I will research/try while waiting for advice from SO)?
EDIT
The Session is getting created/populated in the LoadMe() Sub, like so -->
//load person
Dim dsTemp As Data.DataSet = BLL.Person.GetPerson(PersonID)
//save to session state
Session.Add("Person" & Me.UniqueID, dsTemp)
EDIT
What I am trying to do is create a Form level variable --> private DataSet _personInfo; to hold the DataSet then in my FormPaint(int personID) I call the following:
_personInfo = ConnectBLL.BLL.Person.GetPerson(personID);
I then use that to populate the various fields on the Form.
Next, on btnUpdate_Click() I try the following but to no avail:
void btnUpdate_Click(object sender, EventArgs e)
{
var areChanges = _personInfo.HasChanges();
if (areChanges)
{
var whatChanged = _personInfo.GetChanges();
var confirmChanges =
MessageBox.Show(
"Are you sure you want to make these changes: " +
whatChanged.Tables[0].Rows[0].ItemArray.ToString(), "Confirm Member Info Changes",
MessageBoxButtons.YesNo, MessageBoxIcon.Hand);
if (confirmChanges == DialogResult.Yes)
{
_personInfo.AcceptChanges();
ConnectBLL.BLL.Person.Update(_personInfo);
}
}
FormPaint(HUD.PersonId);
}
I am unclear what I am doing wrong? Am I missing a step?
Thank you