|
Scroll a Memo
Use SenMesage function with EM_LINESCROLL message:
procedure TForm1.Button2Click(Sender: TObject);
begin
SendMessage(Memo1.Handle,EM_LINESCROLL,0,-1);
end;
- Related chapters
-
Fonts
- Related topics
-
Get Memo current line
Open ComboBox from other control
Setting ListBox font
- For more
-
Win32 programmer's reference
- Download source
|