Question calculations on typed dataset?

frazzle

Member
Joined
Feb 14, 2011
Messages
6
Location
Cape Coral Fl
Programming Experience
Beginner
Hello I am new to developing, I have vs2010 express sql2008 express.
I have a data entry form and a report form. I want to retrive the values from a specific recordset preform muiltiple calculation's on th data and send the result's to the report form.

My question is what is the best way to achive this?

BTW I have 2 tables in a typed dataset the data entry form has several text boxes and 2 datagridview's. Its the data in the dgv's i wish to do my calculations on any help at all for a newbe if you could a link to where i might learn would be most helpful.

Thanks in advance
 
You can add colums to the typed DataTable in dataset designer, and set their Expression property if these are calculations based on the existing data columns.
It is also possible to add unbound columns to a bound grid and set the row values manually.
 
Is there a Tutorial somewhere on the internet that show's how this is done?

I need to read something so that I might understand. remember I am a newbe

I lie the idea about adding to the dataset. Thank you I'll google it now.
 
Back
Top