Run (shell32)
Last changed: -79.15.24.63

.
Summary

C# Signature:

[DllImport("shell32.dll", SetLastError=true)]
static extern TODO Run(TODO);

VB Signature:

Declare Function Run Lib "shell32.dll" (TODO) As TODO

User-Defined Types:

None.

Alternative Managed API Example:

[DllImport("shell32.dll", EntryPoint = "ShellExecute")]

public static extern string Shell(IntPtr HWND, string operation, string file, string parameters, string directory, int showcmd);

Notes:

Can use IntPtr Pointer HWND or integer value int frist line.

Tips & Tricks:

Please add some!

s

Sample Code:

Shell(this.Handle, "open", "www.pinvoke.net", , , 0);

Documentation
Run on MSDN