Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6825709
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T22:03:52+00:00 2026-05-26T22:03:52+00:00

I know this should be very simple especially given all the information and example

  • 0

I know this should be very simple especially given all the information and example codes online, but for some reason I just can’t get this to work.

I have a Label and a Panel on a winform. I want the label only to follow the mouse pointer when it enters and moves within the panel.

I got it working, but its location is totally shifted and it is always changing when you move the winform.

Here is the MouseMove and other events:

constructor MainForm;
begin
  InitializeComponent();
  label2.Visible:=false;
end;

method MainForm.panel1_MouseMove(sender: System.Object; e: System.Windows.Forms.MouseEventArgs);
begin
  //label2.Location := panel1.PointToScreen(e.Location);
  label2.Location := self.PointToScreen(e.Location);
  label2.Invalidate;
end;

method MainForm.panel1_MouseEnter(sender: System.Object; e: System.EventArgs);
begin
  label2.Visible:=true;
end;

method MainForm.panel1_MouseLeave(sender: System.Object; e: System.EventArgs);
begin
  label2.Visible:=false;
end;

Update As suggested by larstech, I modified the code, but the label is still showing up outside of the box as the image below is showing.

myimage

Thanks,

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T22:03:52+00:00Added an answer on May 26, 2026 at 10:03 pm

    I don’t know delphi-prism, but wouldn’t it just be:

    label2.Location := e.Location;
    

    Since the Label is not a child control, try this:

    label2.Location := new Point(panel1.Left + e.Location.X, panel1.Top + e.Location.Y);
    

    Obviously, I may not have the syntax right.

    If you are just trying to move a ToolTip, this works in c#:

    private ToolTip _tips = new ToolTip();
    
    private void panel1_MouseMove(object sender, MouseEventArgs e) {
      _tips.Show("test", panel1, e.Location.X + 10, e.Location.Y + 10);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know this should be simple and I should know it but it's eluding
I know this is a very simple question, but unfortunately I don't know enough
This should be very simple (when you know the answer). From this question I
This should be a very simple question for anyone who has some experience in
I know this is a very simple question, but I'm having trouble finding the
This code should be (and is) very simple, and I don't know what I
I know this should be a basic question but I am hitting a brick
I feel like I should know this, but I haven't been able to figure
This is one of those I probably should know this, but I don't questions.
I am getting to know boost::variant. I think this example should work. #include <boost/fusion/sequence.hpp>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.