Hello,
When I load my attached rvf file by ScaleRichView it gives error: "Division by zero" in ApplyJustify procedure of CRVFData. I use your ActionTest demo.
But when I load it with RichViewEdit component, It loads without any problem.
The attached rvf file paragraph alignment is rvajustify, If I change it to rvaright the ScaleRichView loads it successfully like RichViewEdit.
I attached the used font too.
Error "Division by zero" on loading rvf file
Error "Division by zero" on loading rvf file
- Attachments
-
- IRANSans.rar
- (53.71 KiB) Downloaded 1743 times
-
- rvftest.rvf
- (16.25 KiB) Downloaded 1730 times
-
- Site Admin
- Posts: 17522
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: Error "Division by zero" on loading rvf file
I confirm the problem.
Quick fix (in v17.0.1): open CRVFData.pas, change the line 4608 from
to
This fix will be included in the next update.
Quick fix (in v17.0.1): open CRVFData.pas, change the line 4608 from
Code: Select all
if (DX <> 0) and (CurDItem.SpaceCount <> 0) then
Code: Select all
if (DX <> 0) and (CurDItem.SpaceCount <> 0) and (TotalExtraSpace > 0) then
-
- Site Admin
- Posts: 17522
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: Error "Division by zero" on loading rvf file
Fixed in v17.0.2