Click here to Skip to main content
Licence CPOL
First Posted 17 Feb 2006
Views 78,665
Bookmarked 39 times

Calling the Open With dialog box from your application, using C#

By | 17 Feb 2006 | Article
This article illustrates calling the Open With dialog box from your application, using C#.

Abstract

This article is to introduce shell programming with C# for beginners in .NET. The Shell namespace organizes the file system and other objects managed by the Shell into a single tree-structured hierarchy. Conceptually, the Shell namespace is essentially a larger and more inclusive version of the file system. The Shell namespace objects include file system folders and files, along with "virtual" objects, such as the Recycle Bin and Printers folders. One of the primary responsibilities of the Shell is managing and providing access to the wide variety of objects that make up the system. Here, I have created a sample for demonstrating how to call the Open with dialog box in your Windows system.

Overview of the solution

Here in this article, I have developed a simple image viewer application to demonstrate the Open with dialog box in Windows, using C#. It’s really hard to explain the Shell concepts. This application is developed using Microsoft Visual C# Express Edition.

Controls used in this application

private System.Windows.Forms.Button btnBrowseImg;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
public System.Windows.Forms.PictureBox pictureBox1;

Namespaces used in this application

using System.Runtime.InteropServices;
using System.ComponentModel;
using System.Drawing;

Solution with Code

A struct-declaration consists of an optional set of attributes, followed by an optional set of struct-modifiers, followed by the keyword struct and an identifier that names the struct, followed by an optional struct-interfaces specification, followed by a struct-body, optionally followed by a semicolon. And the Serializable keyword indicates that a class can be serialized. This class cannot be inherited.

// 
[Serializable]
public struct ShellExecuteInfo
{
    public int Size;
    public uint Mask;
    public IntPtr hwnd;
    public string Verb;
    public string File;
    public string Parameters;
    public string Directory;
    public uint Show;
    public IntPtr InstApp;
    public IntPtr IDList;
    public string Class;
    public IntPtr hkeyClass;
    public uint HotKey;
    public IntPtr Icon;
    public IntPtr Monitor;
}

// Code For OpenWithDialog Box
[DllImport("shell32.dll", SetLastError = true)]
extern public static bool 
       ShellExecuteEx(ref ShellExecuteInfo lpExecInfo);

public const uint SW_NORMAL = 1;

static void OpenAs(string file)
{
    ShellExecuteInfo sei = new ShellExecuteInfo();
    sei.Size = Marshal.SizeOf(sei);
    sei.Verb = "openas";
    sei.File = file;
    sei.Show = SW_NORMAL;
    if (!ShellExecuteEx(ref sei))
        throw new System.ComponentModel.Win32Exception();
}

How the sample works

Run the sample code and click on the Browse button and select the image you want to view in the viewer and then click OK. The image will be shown in the image viewer tool. Then if you want to view the same image in other image handling samples like Photoshop, ImageReady, etc, you just click on that image; the Open with dialog box will open, and in that you can select any tool you like to use. This is how the sample code works.

References

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

vivekthangaswamy

Architect

India India

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Question64 bit mechine [modified] Pinmemberdudyala21:50 15 Jul '11  
GeneralThanks! PinmemberMJel172:43 23 May '11  
QuestionThank you, and How to add an Exited event to it or get which button(OK or Cancel) user clicked in the select program window? Pinmemberzhyale22:47 11 Nov '10  
GeneralThank You Pinmembermafaz32118:32 12 Feb '10  
GeneralThanks Pinmemberwehadfun18:05 10 Sep '09  
GeneralGreat, thank you Pinmemberr2d2ro23:37 8 Mar '09  
GeneralVista fix Pinmemberbrucerer12:07 25 Feb '09  
QuestionRe: Vista fix Pinmemberzozo7123:27 27 May '09  
AnswerRe: Vista fix Pinmemberalexander200422:44 8 Mar '11  
GeneralGet the location of choosen app Pinmemberpedersen-roxen21:31 15 Feb '09  
GeneralSimplified, Three Lines of Code [modified] PinPopularmemberDefiantBehavior9:44 19 Dec '08  
GeneralRe: Simplified, Three Lines of Code Pinmemberkunluzhu20:43 22 Jul '10  
GeneralThe above code is not working on Windows Vista. PinmemberMember 346999519:44 24 Sep '08  
Questionopen with dialogbox Pinmemberskvani20:17 15 Jul '08  
GeneralGreat job PinmemberMember 37098450:00 4 Feb '08  
But how can you solve this problem if the file is in databaase and i don't want to save on the disk?
Thanks in advance Smile | :)
GeneralThanks PinmemberMatthew Cuba4:21 5 Sep '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120529.1 | Last Updated 17 Feb 2006
Article Copyright 2006 by vivekthangaswamy
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid