For example, when in Memo1 I have:
4 3.2
1 9.4
2 3.0
6 3.3
Memo1 sends the values to two arrays, such that:
Tab1[0] = 4
Tab1[1] = 1
Tab1[2] = 2
Tab1[3] = 6
Tab2[0] = 3.2
Tab2[1] = 9.4
Tab2[2] = 3.0
Tab2[3] = 3.3
How to do this?
I tried to do this as follows:
int SizeTab = Memo1->Lines->Count;
int* Tab1;
double* Tab2;
for(int i = 0; i < SizeTab; i++)
{
Tab1[i] = StrToInt(Memo1->Lines-> ??? );
Tab2[i] = StrToDouble(Memo1->Lines-> ??? );
}Please correct it
Thank You

