C
CMW
In VB.NET I'm retrieving a single table from a SQL Server (tblformdata). I
need to search each record in the dataset to see if any data is missing from
the records (i.e., missing first name, missing last name, missing city,
missing state, missing zip, etc.). If I find that a column data is missing
from a record (i.e., last name), I'd like to update a column/field with a
code indicating data is missing (i.e., ErrorCode = 100). Later, another VB
app will only display records with the ErrorCode column set to 100 to allow
a user to correct the missing data.
Can anyone give me some sample code that shows how I might loop through each
record in the dataset to check for any missing column data?
Thank you.
CMW
need to search each record in the dataset to see if any data is missing from
the records (i.e., missing first name, missing last name, missing city,
missing state, missing zip, etc.). If I find that a column data is missing
from a record (i.e., last name), I'd like to update a column/field with a
code indicating data is missing (i.e., ErrorCode = 100). Later, another VB
app will only display records with the ErrorCode column set to 100 to allow
a user to correct the missing data.
Can anyone give me some sample code that shows how I might loop through each
record in the dataset to check for any missing column data?
Thank you.
CMW