访问量: 217次,访客数: 217人,浏览量: 1次 
首页  编辑  

执行非Exe扩展名的程序

Tags: /C#/API调用/   Date Created: Tue Jun 10 2008 01:18:08 GMT+0000 (Coordinated Universal Time)

using System . Runtime . InteropServices;

[ DllImport ( "kernel32.dll" )]

internal static extern uint WinExec( string lpCmdLine , uint uCmdShow);

private const uint SW_SHOW = 5 ;

private void button1_Click( object sender , EventArgs e)

{

   WinExec( @"c:\temp\temp.bin" , SW_SHOW);

}