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
j'esp�re avoir �t� assez clair
Code : S�lectionner tout - Visualiser dans une fen�tre � part
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); }
merci pour vos reponses
mickael
Partager