2009-11-09 2 views

Répondre

3
indexValue := dtIndexValues.Rows[1].Item['IndexID']; 

ou

indexValue := dtIndexValues.Rows[1]['IndexID']; 

puisque le point est l'indexeur par défaut.

Questions connexes