M
Mike
Hi,
I have two question regarding retrieving results from a DataSet. First,
what is the best way to retrieve results from a dataset with a filter?
Right now I am using the DataView class. I also have a question regarding
the DataView class. Using the code below how do I cast the data returned by
the code below into a bool.
DataView modelDataView = new
DataView(base.componentDataSet.Tables["tblModels"]);
modelDataView.Sort = "strCode";
int index = modelDataView.Find(modelCode);
v = modelDataView[index]["blnV"];
f = modelDataView[index]["blnF"];
Thanks
I have two question regarding retrieving results from a DataSet. First,
what is the best way to retrieve results from a dataset with a filter?
Right now I am using the DataView class. I also have a question regarding
the DataView class. Using the code below how do I cast the data returned by
the code below into a bool.
DataView modelDataView = new
DataView(base.componentDataSet.Tables["tblModels"]);
modelDataView.Sort = "strCode";
int index = modelDataView.Find(modelCode);
v = modelDataView[index]["blnV"];
f = modelDataView[index]["blnF"];
Thanks