Ascenseur avec un TStringGrid
Bonjour,
je developpe une application avec un écran tactile. Dans cette application, j'ai une TStringGrid et je voudrais savoir comment rendre visible la partie cachée en bas de la TStringGrid sans utiliser les ascenseurs ( trop petits avec l'ecran tactile)
j'utilise cette fonction pour descendre de ligne en ligne
Code:
1 2 3 4 5 6 7 8 9 10 11 12
|
TGridRect myRect;
if( iInfoSelect < m_iNbrInfo )
{
iInfoSelect++;
myRect.Left = 0;
myRect.Top = iInfoSelect;
myRect.Right = 5;
myRect.Bottom = iInfoSelect;
sgInfo->Selection = myRect;
sgInfoSelectCell(NULL,0,iInfoSelect,false);
} |
j'espère avoir été assez clair
merci pour vos reponses
mickael