Say, I need to calculate number of credit card payments, enter data in
1) Textbox1, enter total credit card balance
2) Textbox2, enter interest rate
3) Textbox3, enter number of payments
Click a Button to calculate and list number of payments, remaining balance, and
interest accrued display results in the datagridview.
Thanks
Shivanand ArurPosted Sep 29, 2012, 3:42 PM
Hope this suggestion helps you.... If you have any doubt, the please feel free to ask...
Thank you.
Shivanand ArurPosted Oct 11, 2012, 1:02 AM
Thank You!!!
Satyapriya NayakPosted Oct 5, 2012, 11:22 AM
mengPosted Oct 3, 2012, 11:28 PM
//enter for loop
for (int i = 1; i <= ccB;i++)
{
...
string[] row2 = new string[] { i.ToString(), string.Format("{0:C2}", ccB).ToString(), string.Format("{0:C2}",payA).ToString(), string.Format("{0:C2}", iAcc).ToString() };
// fill gridview with CC data
dataGridView1.Rows.Add(row2);
.....
}
}
Satyapriya NayakPosted Oct 3, 2012, 12:22 AM
Can you please share your code.
Thanks
mengPosted Oct 3, 2012, 12:15 AM