When I use TRichEdit
var xR:TRichEdit;
messages:String;
i:Integer;
----
begin
xR:=TRichEdit.Create(self);
// some init code
....
for i:=1 to 30 do
xR.Lines.Add( messages + IntToStr(i) );
end;
When I add more lines than the richedit height, the richedit's vscrollbar do not scroll down to the
bottom and the last messages can not be seen.Can you tell me how to set the vscrollbar of the
richedit to the bottom ?
Thank you
Spent
mail:spentbg@yahoo.com
var xR:TRichEdit;
messages:String;
i:Integer;
----
begin
xR:=TRichEdit.Create(self);
// some init code
....
for i:=1 to 30 do
xR.Lines.Add( messages + IntToStr(i) );
end;
When I add more lines than the richedit height, the richedit's vscrollbar do not scroll down to the
bottom and the last messages can not be seen.Can you tell me how to set the vscrollbar of the
richedit to the bottom ?
Thank you
Spent
mail:spentbg@yahoo.com