01.txt
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:0k
源码类别:

Email客户端

开发平台:

Visual C++

  1. public class Win32
  2. {
  3.     [DllImport("shell32.dll", EntryPoint = "ShellExecuteA")]
  4.     public static extern int ShellExecute(
  5.      int hwnd,
  6.      String lpOperation,
  7.      String lpFile,
  8.      String lpParameters,
  9.      String lpDirectory,
  10.      int nShowCmd
  11.      );
  12. }
  13. 在按钮事件中使用: 
  14. 复制  保存Win32.ShellExecute(0, String.Empty, "mailto:dingo_zgl@msn.com", String.Empty, String.Empty, 1);