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

Вниз

Как програмно проскролировать RichEdit ?   Найти похожие ветки 

 
Mitrofan   (2002-01-18 11:34) [0]

Нужно, к примеру, по нажатию комбинации клавиш заставить скролл двигаться либо вниз, либо вверх. Подскажите как это реализовать ?
Заранее спасибо. Андрей.


 
Serghei   (2002-01-18 11:44) [1]

An application sends an EM_SCROLL message to scroll the text vertically in a multiline edit control. This message is equivalent to sending a WM_VSCROLL message to the edit control.

EM_SCROLL
wParam = (WPARAM) (INT) nScroll; // scroll action
lParam = 0; // not used; must be zero


Parameters

nScroll

Value of wParam. Specifies the action the scroll bar is to take. This parameter may be one of the following values:

Value Meaning
SB_LINEDOWN Scrolls down one line.
SB_LINEUP Scrolls up one line.
SB_PAGEDOWN Scrolls down one page.
SB_PAGEUP Scrolls up one page.


Return Values

If the message is successful, the high-order word of the return value is TRUE, and the low-order word is the number of lines that the command scrolls. The number returned may not be the same as the actual number of lines scrolled if the scrolling moves to the beginning or the end of the text. If the nScroll parameter specifies an invalid value, the return value is FALSE.

Remarks

An application should use the EM_LINESCROLL message to scroll to a specific line or character position.
An application should use the EM_SCROLLCARET message to scroll the caret into view.

See Also

EM_LINESCROLL, EM_SCROLLCARET, WM_VSCROLL


 
Serghei   (2002-01-18 11:50) [2]

B OnKeyDown для TRichEdit-a пишешь
RichEdit1.Perform(EM_SCROLL, по хелпу /SB_LINEDOWN/или ..., 0)
используя Key и Shift параметры для комюинации клавиш

Удачи


 
Mitrofan   (2002-01-18 13:00) [3]

Спасибо, приблизительно так и думал :)


 
Fellomena   (2002-01-18 13:04) [4]


if ... then PostMessage(RichEdit1.Handle,WM_VSCROLL,SB_LINEDOWN,0);

Получили скрол вниз.



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

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

Наверх




Память: 0.47 MB
Время: 0.01 c
6-8961
Kuzmin_Alex
2001-10-30 00:38
2002.02.04
Socket, помогите с NMStrm


1-8932
Станислав
2002-01-16 15:36
2002.02.04
Большие числа


1-8877
Ольга
2002-01-16 14:37
2002.02.04
ListBox-ы


3-8771
Reals
2002-01-05 19:37
2002.02.04
Как правильно сделать проверку в таблице...


3-8751
Olfi
2002-01-03 15:29
2002.02.04
Вопрос по TQuery...