char aux[15]="";
strncpy(aux,Archivo->Strings[0].c_str(),14);
Label21->Caption= aux;
for( int i = 0; i <= 39; i++ )
{
strncpy(aux,Archivo->Strings[i].c_str(),14);
for( int j = 0; j <= 13; j++ )
{
if (aux[j] == '0')
Punt[i+1][j+1]->Brush->Color==clWhite;
else if (aux[j] == '1')
Punt[i+1][j+1]->Brush->Color==clRed;
else if (aux[j] == '2')
Punt[i+1][j+1]->Brush->Color==clLime;
else if (aux[j] == '3')
Punt[i+1][j+1]->Brush->Color==clYellow;
}
}