Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than shell32, prefix the name with the module name and a period.
NULL - Performs the default action (prior to Win2k) normally open
Sample Code:
// Asks default mail client to send an email to the specified address.
ShellExecute( IntPtr.Zero, "open", "mailto:support@microsoft.com", "", "", 4 );
// Asks default browser to visit the specified site.
ShellExecute( IntPtr.Zero, "open", "http://channel9.msdn.com", "", "", 4 );
// Opens default HTML editing app to allow for edit of specified file
ShellExecute( IntPtr.Zero, "edit", @"c:\file.html", "", "", 4 );
//Modified by Aljaz: Replaced the last zero in these calls with say otherwise it won't show anything
// 0 stands for SW_HIDE contant, which means execute but don't show the window which is probably not
// what we want.
Alternative Managed API:
Do you know one? Please contribute it!
Performs an operation on a specified file.
7/14/2019 8:05:06 AM - -188.102.225.40
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).