hi
I thought I can fill a typed dataset , which I created like this:
The name of the table is HouseInformation
In design mode I created a column NameOfHouse and Price.
Is it not possible to fill the columns directly? like...
dsWincObjects dsHouse = new dsWincObjects();
dsHouse.NameOfHouse = "value";
and and...
or option I thought...to instatiate the column
dsWincObjects.HouseInformationDataTable dtHouse = new dsWincObjects.HouseInformationDataTable();
Not Possible to acces directly the columns? and give my values to fill?
dtHouse.NameOfHouse = "value";....
Thanks
// edit
dsWincObjects dsMieter = new dsWincObjects();
dsWincObjects.MieterInformationDataTable dtMieter = new dsWincObjects.MieterInformationDataTable();
dsWincObjects.MieterInformationRow newRow = dtMieter.NewMieterInformationRow();
newRow.FullName = "test";
dsMieter.MieterInformation.AddMieterInformationRow(newRow);