How can I store user's input into 10x4 array until EXIT button is cliked?
I am doing a fairly small project to calculate future value base on monthly amount invested and percent rate and how long. I want to hold 10 calculatioin in an array with 4 columns to hold 1.monlthyInvestment, 2.interestRate, 3.years, 4.futureValue and display all these in a MessageBox. can anyone help me please?
Posted Jul 21, 2005, 1:16 AM
Andrzej WegierskiPosted Jul 15, 2005, 4:45 AM
But, create only string with results of computations and display it into MessageBox, I think.struct mydata { public int myval1; ... public decimal myvalx; } mydata[] arr=new mydata[10]; arr[3].myval1=0;