Page 2 of 2

Posted: Tue May 26, 2015 5:44 pm
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

It works

Posted: Wed May 27, 2015 8:18 am
by Hillebrandt
Hello Mr. Tkachenko,

thanks a lot! That worked perfectly!

Greetings from Germany
Hillebrand