Search found 36 matches
- Mon Oct 13, 2014 10:26 pm
- Forum: Support
- Topic: Forcing inserted text to be a new item
- Replies: 1
- Views: 11620
Forcing inserted text to be a new item
We allow the user to create a "template" that contains "fields", for lack of a better term. The fields are replaced each time a document is opened with the current value. Consider the fields PatientName and PatientAge and this simple template: PatientName , age PatientAge , was seen today at 11:00 ...
- Mon Jul 07, 2014 1:02 pm
- Forum: ScaleRichView
- Topic: Export ScaleRichView to PDF using Gnostice and Metafile
- Replies: 15
- Views: 86702
- Fri Aug 30, 2013 6:44 pm
- Forum: Support
- Topic: Sharing styles between RichViewEdit, RVHEader and RVFooter
- Replies: 5
- Views: 21874
- Fri Aug 30, 2013 4:23 pm
- Forum: Support
- Topic: Sharing styles between RichViewEdit, RVHEader and RVFooter
- Replies: 5
- Views: 21874
- Fri Jun 07, 2013 6:01 pm
- Forum: ScaleRichView
- Topic: PageNoVisible problems
- Replies: 4
- Views: 27629
In future, we plan to add "page number" field in headers/footers Has any progress been made on this enhancement? If not, is it still planned? I'm once again needing this functionality and searching the forums for solutions. RVFooter is the same for every page of the main document, so I'm not sure ...
- Mon Jan 07, 2013 4:12 pm
- Forum: Support
- Topic: Reportbuilder Wrapper Issue
- Replies: 12
- Views: 46805
I had installed the ReportBuilder wrapper back when I originally installed TRichView, but I just now had a need for it. I couldn't open the demo project because Delphi said the TppRichView component could not be found. And I couldn't add the component to my own report. Disabling the delayed load ...
- Tue Sep 18, 2012 2:02 pm
- Forum: Support
- Topic: Bug in TAddictSpell, inherited by TRVAddictSpell3
- Replies: 0
- Views: 16127
Bug in TAddictSpell, inherited by TRVAddictSpell3
Fyi, I determined there is a bug in Addict 4.3's TAddictSpellBase component, which affects TRVAddictSpell3 (as well as TAddictSpell and TAddictSpell3). This is not a bug in TRichView or TRichView's integration with Addict. However, I spent several hours debugging our app locking up when spell ...
- Wed Aug 01, 2012 5:21 pm
- Forum: Support
- Topic: DocumentHeight
- Replies: 8
- Views: 32027
The help file is wrong, I'll correct it. While the height of a scrollable area is really a multiple of VSmallStep, DocumentHeight is not. This is the exact document height. Thanks. This explains one of the issues I was seeing. :) Still not sure on the other one where DocumentHeight is much greater ...
- Wed Aug 01, 2012 3:11 pm
- Forum: Support
- Topic: DocumentHeight
- Replies: 8
- Views: 32027
c := Trunc(rve.DocumentHeight / rve.VSmallStep); if (rve.DocumentHeight mod rve.VSmallStep) > 0 then c := c + 1; rve.ClientHeight := rve.VSmallStep * c// Now height of rve is equal to height of scrollable area? Is something like this still necessary? According to the help file, DocumentHeight is ...
- Fri Jul 06, 2012 7:15 pm
- Forum: Support
- Topic: Empty RVE and Addict Autospell = 100% CPU
- Replies: 18
- Views: 66912
- Fri Jul 06, 2012 7:05 pm
- Forum: Support
- Topic: Empty RVE and Addict Autospell = 100% CPU
- Replies: 18
- Views: 66912
- Fri Jul 06, 2012 11:39 am
- Forum: Support
- Topic: Empty RVE and Addict Autospell = 100% CPU
- Replies: 18
- Views: 66912
- Thu Jul 05, 2012 9:00 pm
- Forum: Support
- Topic: Empty RVE and Addict Autospell = 100% CPU
- Replies: 18
- Views: 66912
We just implemented LiveSpelling with Addict a couple of days ago and we were seeing this same issue, although our scenario was a little different. If our TRichViews were empty, we were not seeing a race condition. But if our TRichViews had content (loaded with InsertRVFFromStreamEd), then we'd see ...
- Thu Jul 05, 2012 12:43 pm
- Forum: ScaleRichView
- Topic: Problem with TSRVPrint when no default printer is assigned
- Replies: 3
- Views: 29129
- Tue Jul 03, 2012 7:08 pm
- Forum: ScaleRichView
- Topic: Problem with TSRVPrint when no default printer is assigned
- Replies: 3
- Views: 29129
Well, not that simple. :( TSRVPrint.Loaded calls .UpdatePage calls .calculateSize calls .calculatePictureSize calls .GetPrinterInfo which eventually call TPrinter.GetPrinterIndex and TPrinter.SetToDefaultPrinter and the "There is no default printer currently selected" occurs. I'm switching to my ...