Форум — Ответы     (  К темам )
 ?  WiSucht: StringGrid СРОЧНО!!!!! (03-05-2003 17:10:28)
Подскажите пожалуйста как программно выделить ячейку в компоненте StringGrid!!!
Заранее СПАСИБО!!!
 Владимир (03-05-2003 20:08:08)
// Это есть в Help-e

void __fastcall TForm1::Button1Click(TObject *Sender)
{
// The following code selects the rectangle containing
// rows 1 through 4, and columns 2 and 3.


TGridRect myRect;
myRect.Left = 3;
myRect.Top = 1;
myRect.Right = 2;
myRect.Bottom = 4;
StringGrid1->Selection = myRect;

}
//-----------------------------------------------