Главная страница
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.015 c
1-72834
den74
2004-01-08 15:01
2004.01.23
MessageDlg


1-72791
RDen
2004-01-13 09:00
2004.01.23
Добавить в Excel страницы


1-72742
killer
2004-01-11 15:33
2004.01.23
ParamStr(1)


14-72882
Nomolos
2004-01-02 17:25
2004.01.23
Кто блин украл мой ник????


1-72767
KA
2004-01-13 15:14
2004.01.23
настройки среды