MouseOverObject

Hi.

I would like to change the cursor icon when the mouse hovers over certain Memofield. Can someone help? Perhaps show the script to do this?

Thank you,


Reinaldo.

Comments

  • edited 1:52PM
    I would like to change the cursor icon when the mouse hovers over certain Memofield. Can someone help? Perhaps show the script to do this?
    Use TfrxMemoView.Cursor property - you can change it in Object Inspector at design time.
    You can do that by code as well (both FR script or your compiler), like in this example
    Memo1.Cursor := crHandPoint;
    
    You may see all types of cursor constants in Object Inspector.
    There's more info about that in Programmer Manual chapter 1.10 Interactive reports.
  • edited 1:52PM
    austingrd wrote: »
    Hi. Are there any other options other than using crHandPoint?
    You can see all options in Object Inspector.
  • Mick, Thank you very much.


    Reinaldo.

Leave a Comment