Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2004.01.23;
Скачать: CL | DM;

Вниз

Как получить номер строки и столбца TStringGrid, на котором...   Найти похожие ветки 

 
Шурик Ш ©   (2004-01-12 16:20) [0]

Как получить номер строки и столбца TStringGrid, на котором нажата правая кнопка мыши и выбран пункт контекстного меню?


 
pasha_golub ©   (2004-01-12 16:23) [1]

OnMouseDown+MouseToCell+F1


 
GLFox   (2004-01-12 16:25) [2]

Запоминай координаты - GetCursorPos() перед показом менюшки, по ним и найдешь свой Cell.


 
Anatoly Podgoretsky ©   (2004-01-12 16:28) [3]

Row/Col


 
Serge ©   (2004-01-12 16:29) [4]

Returns the column and row of the cell at the position with screen coordinates (X,Y).

procedure MouseToCell(X, Y: Integer; var ACol, ARow: Longint);

Description

Call MouseToCell to convert from grid-relative screen coordinates to row and column indexes. The X and Y parameters are the screen coordinates of the point to be converted. MouseToCell returns the ACol parameter as the number of the column over the point (X,Y), and the ARow parameter as the number of the row.

Usually the MouseToCell method is used in a mouse event handler, which supplies the mouse coordinates as the X and Y parameters of the method call.


 
Шурик Ш ©   (2004-01-12 16:43) [5]

To GLFox (12.01.04 16:25) [2]
Дело в том что GetCursorPos() возвращает абсолютные координаты, а MouseToCell нужны относительные. А как получить их?


 
Anatoly Podgoretsky ©   (2004-01-12 16:46) [6]

Так тебе не номер строки/колонки а координаты мыши, тогда ScreenToClient


 
Шурик Ш ©   (2004-01-12 16:49) [7]

Мне нужны номер строки/колонки, но конструкция:
procedure TDataForm.DataSGPopupMenuPopup(Sender: TObject);
begin
GetCursorPos(MCoord);
end;

procedure TDataForm.DeleteItemClick(Sender: TObject);
var
Col, Row: Longint;
i,j: Integer;
begin
DataStringGrid.MouseToCell(MCoord.X, MCoord.Y, Col, Row);
...
end;


присваивает Col = -1 и Row = -1.


 
Юрий Зотов ©   (2004-01-12 17:07) [8]

Сказали же - ScreenToClient.


 
Anatoly Podgoretsky ©   (2004-01-12 17:18) [9]

А про прямое получение координат строки и колонки в [3]



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

Текущий архив: 2004.01.23;
Скачать: CL | DM;

Наверх




Память: 0.48 MB
Время: 0.017 c
6-72865
axx
2003-11-21 08:49
2004.01.23
Подскажите как передать Record через SendBuf


14-72926
Рулон Обоев
2004-01-01 15:29
2004.01.23
Идея =)


1-72820
Devourer
2004-01-12 14:29
2004.01.23
Invalid argument to date encode


1-72737
zzzzz
2004-01-06 16:08
2004.01.23
Как сделать чтобы ShellExecute открывал страницу в новом окне?


3-72688
kirov_igor
2003-12-24 12:54
2004.01.23
Поиск по набору данных