Hi,
Is there a faster means by which I can get data from an edit box and assign them to an array.
lets say I got this intergers m_1....m_100, and I want to put the values to an int val[10][10] whaat I did was to hard code each interger to each array elements. something like this...
UpdateData(TRUE); // pass the values of the edit boxes
val[0][0] = m_1;
val[0][1] = m_2;
.
.
.
val[0][9]=m_10;
.
.
.
and so on..
this is too tedious, can someone help me with this one. I know I'm missing some tips , a trick or two. Pls help.Thanks. :confused: