mchoudhury
Programmer
hi guys
I have this table with these columns:
TelephoneServicePlanID TelephoneCallPlanID ServicePlanName LocationConnectionCharge MonthlyFee
I want to add another column to the table call Annual Price and inside that column each, value should be inserted according to FinalResult which i have stored in a n object. I'm using datagrid and databing but it does not allow me to add the column does anyone know how i could go about doing this:
FinalTotal2 = MCLocalTotal + MCNationalTotal + MCTotalCountries + MobileTotal
dtSavings = FRI.SOMB.Visitor.DataProvider.getTelephoneServicePlan()
dtSavings.Columns.Add("AnnualPrice")
Dim dr As DataRow
dr = dtSavings.NewRow
dr("AnnualPrice") = FinalTotal2
dtSavings.Rows.Add(dr)
I have this table with these columns:
TelephoneServicePlanID TelephoneCallPlanID ServicePlanName LocationConnectionCharge MonthlyFee
I want to add another column to the table call Annual Price and inside that column each, value should be inserted according to FinalResult which i have stored in a n object. I'm using datagrid and databing but it does not allow me to add the column does anyone know how i could go about doing this:
FinalTotal2 = MCLocalTotal + MCNationalTotal + MCTotalCountries + MobileTotal
dtSavings = FRI.SOMB.Visitor.DataProvider.getTelephoneServicePlan()
dtSavings.Columns.Add("AnnualPrice")
Dim dr As DataRow
dr = dtSavings.NewRow
dr("AnnualPrice") = FinalTotal2
dtSavings.Rows.Add(dr)