Ticket Q256610
Visible to All Users
Duplicate

We have closed this ticket because another page addresses its subject:

Switch the mouse pointer that hovers over cxHyperLinkEdit data cells to crHandPoint

How to make a hyperlink show 'hot track' color

created 15 years ago

I've seen your note about setting the mouse cursor when over a hyperlink cell e.g:
procedure TArtMessageListForm.cxGrid1TableView1MouseMove(Sender: TObject;
  Shift: TShiftState; X, Y: Integer);
var
  Ht: TcxCustomGridHitTest;
begin
  Ht := TcxGridSite(Sender).GridView.Viewinfo.GetHitTest(X,Y);
  If (Ht is TcxGridRecordCellHitTest) and
   (TcxGridRecordCellHitTest(Ht).Item.Properties is TcxHyperLinkEditProperties) then
    Screen.Cursor := crHandPoint
  else
    Screen.Cursor := crDefault;
end;
I am using this but would also like to cause the hyperlink to change color as the mouse flies over it. I've tried various modifications of the above code but without success. How please?
Thanks.

Comments (3)
DevExpress Support Team 15 years ago

    Hello Brian.
    Thank you for your message.
    The simplest solution is to use custom drawing capabilities of the ExpressQuantumGrid to paint a cell under the mouse cursor. Just check whether the necessary cell is under the mouse cursor and draw the text using a different color.
    Attached is an example that shows how to perform this task. Does this solution meet your requirements?
    Best regards,
    Ingvar.
    P.S. By the way, it seems you're using an older build of our components (according to the report's Version field). Please visit our version info page, to learn about the most recent versions of our products, and obtain instructions on how to update them.

      Yes, this is looking good. Now could you show me a nice way of getting the 'hand' cursor when over the hyperlink please? - Ideally only when over the text, not for the whole cell area…
      Many thanks for your fast response.

      DevExpress Support Team 15 years ago

        Hello Brian.
        Thank you for the response.
        This task has already been reviewed in our Support Center. Please refer to the Mouse pointer over not editable hyperlink text, not over the whole cell report for additional information.
        Hopefully, it will help you achieve the required functionality.
        Best regards,
        Ingvar.

        Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

        Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.