Animation in the same line as the text (TRichView)
Posted: Wed Oct 03, 2012 4:53 pm
Hi! Help please. I'm trying to insert animation in the same line as the text, but the animation in a new line.
Tried all the values 'TRVVAlign'.
Code: Select all
...
with RichView do
begin
AddNL('Me: ', 0, 0);
AddPictureEx('Smile', GifImage, 0, rvvaBaseLine);
Add('Text', 0);
Format;
end;
...