[DllImport("shell32.dll", EntryPoint = "ShellExecute")]
public static extern int ShellExecuteA(int hwnd, string lpOperation, string lpFile, string lpParameters, string lpDirectory, int nShowCmd);
Declare Function ShellExecuteExW Lib "shell32.dll" (TODO) As TODO
None.
[DllImport("Shell32.dll", CharSet = CharSet.Auto, SetLastError = true)]
static extern IntPtr ShellExecute(IntPtr hwnd, string lpOperation, string lpFile, string lpParameters, string lpDirectory, int nShowCmd);
// Example to open a URL
IntPtr result = ShellExecute(IntPtr.Zero, "open", "http://www.google.com", null, null, 1);
None.
Please add some!
Please add some!