Search found 5 matches

by gcw5zb
Tue Sep 20, 2005 2:49 am
Forum: Support
Topic: Does RichViewEdit had some property to get it's plain text?
Replies: 5
Views: 19258

Does RichViewEdit had some property to get it's plain text?

Does it had?I can get the text ,but is there any simple way like "richedit.text"?
by gcw5zb
Sat Sep 17, 2005 1:39 am
Forum: Support
Topic: how to replace a picture with another one?
Replies: 1
Views: 14167

how to replace a picture with another one?

i want replace a picture with another that i want to insert ?how can i do ?
by gcw5zb
Fri Sep 09, 2005 7:43 am
Forum: Support
Topic: gif image
Replies: 7
Views: 27646

Update it to the newer version why it can't move?! uses GIFImage, RVAnimate; {$R *.dfm} procedure TForm1.Button1Click(Sender: TObject); var gif:TGIFImage; begin rich.AnimationMode:=rvaniOnFormat; gif:=TGifImage.Create; gif.LoadFromFile('0020.gif'); rich.InsertPicture('0020.gif',gif,rvvaBaseLine); e...
by gcw5zb
Fri Sep 09, 2005 6:43 am
Forum: Support
Topic: gif image
Replies: 7
Views: 27646

1) Include RVGifAnimate unit in the project or in the uses clause of one of your units 2) Set rich.AnimationMode=rvaniOnFormat And do not call Format after Insert*** methods. They are editing-style methods, they reformat the changed part of document themselves. In this case, Format only slows down ...
by gcw5zb
Thu Sep 08, 2005 9:17 am
Forum: Support
Topic: gif image
Replies: 7
Views: 27646

gif image

why i insert a gif image,but it can't be active?
my code is like this:
gif:=TGifImage.Create;
gif.LoadFromFile('0020.gif');
rich.InsertPicture('0020.gif',gif,rvvaBaseLine);
rich.Format;