what i am trying to do right now is to create a scroling credit text using the TMemo component and TTimer
procedure TAboutBox.Timer1Timer(Sender: TObject);
begin
Memo1.ScrollBy(0,-1);
end;
the Tmemo lines contain the text of the credit, something like :
Thankyou to :
Junifer lamda
Exemple user 2
Coder Monalisa
etc etc
Everything work as expected, i've set the timer.interval to 1ms , the text scroll smoothly but it displays only the 3 first lines then it displays a blank space, unless i click and drag manually using the mouse inside the memo, then it displays some lines then it disappears again when i release.
I tried with both TRichedit and TListBox but the problem persist. How could this be ?