View Issue Details

IDProjectCategoryView StatusLast Update
0006012JEDI VCL00 JVCL Componentspublic2013-12-13 11:17
ReporterGeroldAssigned Toobones 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionsuspended 
Product VersionDaily / GIT 
Target VersionFixed in Version 
Summary0006012: TJVRichEdit:: URLHover event not called in case JvRichEdit control does not have the focus
DescriptionIf you have 2 or more controls (TEdit, etc.) and the TJvRichEdit control on a form, the URLHover event is not called until the TJvRichEdit control has the focus.

To avoid this, I added the following line:

 ...
  procedure TJvCustomRichEdit.CNNotify(var Msg: TWMNotify);
  ...
    EN_LINK:
      with PENLink(NMHdr)^ do
      begin
        case Msg of
          WM_MOUSEMOVE,
          WM_SETCURSOR: // This is the new line!
            begin
              URLHover(GetTextRange(chrg.cpMin, chrg.cpMax));
            end;
          ...
        end;
      end;
      ...
TagsNo tags attached.

Activities

obones

2013-01-15 15:44

administrator   ~0020365

Please provide the zipped sources of a sample application showing this.

obones

2013-12-13 11:17

administrator   ~0020759

No news, not reproduced, closing the issue

Issue History

Date Modified Username Field Change
2012-10-11 15:52 Gerold New Issue
2013-01-15 15:44 obones Note Added: 0020365
2013-01-15 15:44 obones Status new => feedback
2013-12-13 11:17 obones Note Added: 0020759
2013-12-13 11:17 obones Status feedback => resolved
2013-12-13 11:17 obones Resolution open => suspended
2013-12-13 11:17 obones Assigned To => obones