Mega Code Archive

 
Categories / Delphi / Ide Indy
 

Scroll Memo at runtime

Title: Scroll Memo at runtime Question: How to scroll a memo by code Answer: procedure TForm1.Edit1KeyDown(Sender: TObject; var Key: Word; Shift: TShiftState); begin if Key = VK_F8 then SendMessage(Memo1.Handle, { HWND of the Memo Control } WM_VSCROLL, { Windows Message } SB_PAGEDOWN, { Scroll Command } 0) { Not Used } else if Key = VK_F7 then SendMessage(Memo1.Handle, { HWND of the Memo Control } WM_VSCROLL, { Windows Message } SB_PAGEUP, { Scroll Command } 0); { Not Used } end;