Вниз
Скачать: CL | DM;

Stringgrid & Combobox   Найти похожие ветки 

 
tytus ©   (2003-01-09 20:52) [0]

Добрый вечер. Подскажите как по одному клику на ячейке stringgrid в ней (по ее размерам) появлялся combobox?


 
MBo ©   (2003-01-10 06:32) [1]

FAQ


 
Groove ©   (2003-01-10 14:18) [2]

я делал так,
бросал на форму StringGrid и Combobox
Combobox.Visible:=false;

затем в обработчиках писал

procedure TForm1.StringGrid1SelectCell(Sender: TObject; ACol,
ARow: Integer; var CanSelect: Boolean);
var
r:TRect;
begin
r:=StringGrid1.CellRect(ACol,ARow);
ComboBox1.Visible:=true;
ComboBox1.Top:=r.Top+StringGrid1.Top;
ComboBox1.Left:=r.Left+StringGrid1.Left;
ComboBox1.Height:=r.Bottom-r.Top;
ComboBox1.Width:=r.Right-r.Left;
end;

procedure TForm1.StringGrid1Exit(Sender: TObject);
begin
ComboBox1.Visible:=false;
end;




Страницы: 1 вся ветка

Скачать: CL | DM;



Память: 0.45 MB
Время: 0.013 c
1-62617
Yegor Derevenets
2003-01-08 13:00
2003.01.20
Про MainMenu и OnKeyXXXX


1-62583
Johnny
2003-01-08 22:55
2003.01.20
текст Item из List box=edit.text : как сделать?


1-62500
fifo
2003-01-10 13:07
2003.01.20
StringGrid объедин. ячеек


1-62593
Артём К
2003-01-09 03:18
2003.01.20
Как распечатать данные из StringGrida в виде таблицы


14-62805
Дмитрий К.К.
2003-01-01 07:08
2003.01.20
Именинники 1 января




   Наверх