Search found 4 matches

by Romeo_Popescu
Fri May 24, 2019 11:20 pm
Forum: ScaleRichView
Topic: OnDestroy order inside SRVTabSet.pas
Replies: 1
Views: 74436

OnDestroy order inside SRVTabSet.pas

Hi Sergey,

I started using EurekaLog to track down exceptions and found that on program close there is an issue inside SRVTabSet.pas

I think that in this code:

destructor TSRVTabSet.Destroy;
begin
FTabs.Free;
FCloseButton.Free;
FMargins.Free;
Buffer.Free;
SkinManager := nil;
ImageList ...
by Romeo_Popescu
Fri May 10, 2019 8:57 pm
Forum: Support
Topic: Caret missing
Replies: 6
Views: 29802

Re: Caret missing

I just sent the files by email.
Private message said the file was too large.

I am using 10.1 Berlin Enterprise, 64 bit projects.

I've also added one TgtPDFEngine and one TgtScaleRichViewInterface components to the form, maybe that caused the issue?
I've added a couple of public procedures as well ...
by Romeo_Popescu
Fri May 10, 2019 4:23 pm
Forum: Support
Topic: Caret missing
Replies: 6
Views: 29802

Re: Caret missing

Thank you so much for your quick response!

That did not work, but looking at the code in that unit I figured a temporary solution and added this to my onFormShow:

SRichViewEdit1.CaretBlinkTime := 500;
Application.ProcessMessages;
SRichViewEdit1.CaretBlinkTime := 400;
Application ...
by Romeo_Popescu
Thu May 09, 2019 4:37 am
Forum: Support
Topic: Caret missing
Replies: 6
Views: 29802

Caret missing

Hi Sergey,

I use the demo from ScaleRichView
\TRichView\ScaleRichView\Demos\ActionTestTabsRibbon

because I need a form with Ribbon Menu to allow some document editing in my application.
All I do is create another form and set it as main form for the project and from there I call the ribbon form ...