D
Dirk Vervecken
Hi,
I'm trying to fill a dataRow from a dataset. But now i'm wondering,
what do i do if the Dataset does not contain the requested
information?
For Example :
c_CompGroupRij = c_dsCompGroup.tComponentGroup.FindByCompgroupId(cGroupId);
I try to find a row in the Dataset (c_dsCompGroup) that has cGroupId
as an ID, in order to display this row on screen.
But if It does not contain that ID, how do I check this before I do
this:
this.cGroupName = c_CompGroupRij.Cgroupname;
this.IsActive = c_CompGroupRij.IsActive;
Thanks
Dirk Vervecken
I'm trying to fill a dataRow from a dataset. But now i'm wondering,
what do i do if the Dataset does not contain the requested
information?
For Example :
c_CompGroupRij = c_dsCompGroup.tComponentGroup.FindByCompgroupId(cGroupId);
I try to find a row in the Dataset (c_dsCompGroup) that has cGroupId
as an ID, in order to display this row on screen.
But if It does not contain that ID, how do I check this before I do
this:
this.cGroupName = c_CompGroupRij.Cgroupname;
this.IsActive = c_CompGroupRij.IsActive;
Thanks
Dirk Vervecken