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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T03:33:35+00:00 2026-05-20T03:33:35+00:00

I’m writing a .NET application that presents a Tree/List view of objects in the

  • 0

I’m writing a .NET application that presents a Tree/List view of objects in the same way as Windows Explorer. These are text-based items that the user can regard as files, and I want the user to be able to create shortcuts to them similar to the way they would create a shortcut to any file. Except in this instance the shortcut would be to my application with a specific command line rather than to a file object.
So I need to support drag and drop to Internet Explorer such that the drag icon looks like the Alt-drag (create shortcut) icon, and the drop operation creates a shortcut to my application with a custom command line.

My question: what information do I need to supply to Windows at the start of the drag operation, so that Windows Explorer displays the correct icon and always creates a shortcut in the drop event?

  • 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-20T03:33:35+00:00Added an answer on May 20, 2026 at 3:33 am

    The easiest way to do this is to 1) create the shortcut and 2) drag it. I don’t do much managed code at all so I can’t say if there is any built-in support for the IShellLink object. If not, somebody has probably already done the work and built a wrapper. So you could create the ShellLink object and fill it in with the path to your application, parameters, etc. and save it somewhere (perhaps the temp folder). Then you would initiate the drag operation with something like this:

    private void Form1_MouseDown(object sender, MouseEventArgs e)
    {
        if ((e.Button & MouseButtons.Left) == MouseButtons.Left)
        {
            // left mouse button clicked; begin drag
            // create data object with FileDrop format (list of files to be dropped)
            DataObject data = new DataObject();
            System.Collections.Specialized.StringCollection paths = new System.Collections.Specialized.StringCollection();
            paths.Add(@"<temp_path>\My New Shortcut.lnk");
            data.SetFileDropList(paths);
            // begin the drag, indicating it is a copy operation
            DragDropEffects effect = DoDragDrop(data, DragDropEffects.Copy);
        }
    }
    

    Then when the user drops it (e.g. on their desktop) it will copy the shortcut file from the temp folder.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I've got a string that has curly quotes in it. I'd like to replace
I have a French site that I want to parse, but am running into
I am doing a simple coin flipping experiment for class that involves flipping a
I have an MVC Razor view @{ ViewBag.Title = Index; var c = (char)146;
I need a function that will clean a strings' special characters. I do NOT
I am writing an app with both english and french support. The app requests

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.