Paste image from internet and resize

General TRichView support forum. Please post your questions here
Sergey Tkachenko
Site Admin
Posts: 17557
Joined: Sat Aug 27, 2005 10:28 am
Contact:

Post by Sergey Tkachenko »

For DBRichViewEdit, call:

Code: Select all

if not DBRichViewEdit1.CanChange then
  exit;
Changed := 0; 
DBRichViewEdit1.RVData.EnumItems(EnumItemsProc, Changed, ''); 
if Changed<>0 then begin
  DBRichViewEdit1.Change;
  MyDataSet.Post;
end;
See http://www.trichview.com/help/idh_examp ... edit1.html
Hillebrandt
Posts: 14
Joined: Tue Feb 10, 2015 4:06 pm
Location: Papenburg, Germany

It works

Post by Hillebrandt »

Hello Mr. Tkachenko,

thanks a lot! That worked perfectly!

Greetings from Germany
Hillebrand
Post Reply