Working with live report

I work with a live report wich permit to check/uncheck checkbox just cliking on it on report preview. I writted following code in the OnObjectClick event :

if (View.typ = gtAddIn) then
begin
Chk := TfrCheckBoxView(View);
if trim(Chk.Memo.Text) = '-1' then
Chk.Memo.Text := '0'
else
Chk.Memo.Text := '-1';
end;

It works but the canvas is not refreshed, how can I refresh the canvas ?

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.