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 6852739
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T01:25:43+00:00 2026-05-27T01:25:43+00:00

I am quite new to Winform dev. I have two list boxes. When the

  • 0

I am quite new to Winform dev. I have two list boxes. When the user double clicks an item in the first listbox, I want this to be copied to the second list box. The problem is that my double click method never gets fired.
here’s my code:

//here I register the event
this.fieldsArea.MouseDoubleClick += new MouseEventHandler(fieldsArea_MouseDoubleClick);

Then here is the double click method:

    private void fieldsArea_MouseDoubleClick(object sender, MouseEventArgs e)
    {
        MessageBox.Show("from method");
        int index = fieldsArea.IndexFromPoint(e.Location);
        string s = fieldsArea.Items[index].ToString();

        selectedFieldsArea.Items.Add(s);
    }

So I want the element from fieldsArea to be copied to selectedFieldsArea… The messagebox never shows and in debug I see that I never enter this method…
Am I missing something here?

ps: I have drag drop implemented which works well.

UPDATE: The problem comes from the MouseDown event also being implemented. So here’s my mousedown event.

private void fieldsArea_MouseDown(object sender, MouseEventArgs e)
    {
        if (fieldsArea.Items.Count == 0)
            return;
        int index = fieldsArea.IndexFromPoint(e.Location);
        string s = fieldsArea.Items[index].ToString();
        DragDropEffects dde1 = DoDragDrop(s,
            DragDropEffects.All);
    }
  • 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-27T01:25:43+00:00Added an answer on May 27, 2026 at 1:25 am

    Make sure you don’t have other Mouse event like MouseClick MouseDown event registered, which could interfere with MouseDoubleclick event.

    Update:

    Add following code in your MouseDown event handler, you can check if it is a double-click first.

    if(e.Clicks>1)
    {
       int index = fieldsArea.IndexFromPoint(e.Location);
       string s = fieldsArea.Items[index].ToString();
       selectedFieldsArea.Items.Add(s); 
    }
    

    so here is your new handler:

    private void fieldsArea_MouseDown(object sender, MouseEventArgs e)
    {
      if (fieldsArea.Items.Count == 0)
                return;
      int index = fieldsArea.IndexFromPoint(e.Location);
      string s = fieldsArea.Items[index].ToString();
    
      if(e.Clicks>1)
      {          
           selectedFieldsArea.Items.Add(s); 
      }
      else
      {
            DragDropEffects dde1 = DoDragDrop(s,
            DragDropEffects.All);
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Quite new to maven here so let me explain first what I am trying
Still quite new to Haskell.. I want to read the contents of a file,
Hi I am quite new to php but i have been following some tutorials
I'm quite new to php and have been reading Larry Ullman book to develop
Am quite new to namespacing etc so hopefully this will be straightforward. I have
I have a basic winform, calling an external program (SVN). I want to display
Quite new to this mocking thing, I have a couple of questions. Correct me
Im quite new at Javascript however I have been trying to create a currency
Im quite new to Java and i have stumbled upon the following problem. Im
Quite new to this but i have created a SQL script that groups by

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.