B
Bob Day
Using vs 2003, vb.net, MSDE...
Is there any way to set the DataSet base default values, so that each
subsequent instantiation of that base autmatically takes those default
values as their default values?
The following line only creates a default value for an instantiation of the
DataSet base, not the base itself. Meaning, each time you instantiate the
base you must instantiated all default values again for that new
instantiation.
DataSet.DataTable.ColumnName.DefaultValue = "x"
Thanks!
Bob Day
Is there any way to set the DataSet base default values, so that each
subsequent instantiation of that base autmatically takes those default
values as their default values?
The following line only creates a default value for an instantiation of the
DataSet base, not the base itself. Meaning, each time you instantiate the
base you must instantiated all default values again for that new
instantiation.
DataSet.DataTable.ColumnName.DefaultValue = "x"
Thanks!
Bob Day