R
RobRich
I'm trying to figure out the best way to accomplish a task. I need to
calculate the numerical values from
about 300+ textboxes. Basiclly I have an application that users input
checks and credit card receipts into
and the program calculates the total.. Right now I am just doing
Decimal.Parse(textbox1.Text) + Decimal.Parse(textbox2.Text) + etc...
So is this what I should be doing to accomplish what I'm trying to do? The
application works fine using
that functionality but not sure if thats the best way to code the
application..
Any suggestions welcome.
Thanks
calculate the numerical values from
about 300+ textboxes. Basiclly I have an application that users input
checks and credit card receipts into
and the program calculates the total.. Right now I am just doing
Decimal.Parse(textbox1.Text) + Decimal.Parse(textbox2.Text) + etc...
So is this what I should be doing to accomplish what I'm trying to do? The
application works fine using
that functionality but not sure if thats the best way to code the
application..
Any suggestions welcome.
Thanks