Parsi Coders
بار و بسته كردن در CD Rom - نسخه قابل چاپ

+- Parsi Coders (http://parsicoders.com)
+-- انجمن: Software Development Programming (http://parsicoders.com/forumdisplay.php?fid=37)
+--- انجمن: C# Programming (http://parsicoders.com/forumdisplay.php?fid=55)
+--- موضوع: بار و بسته كردن در CD Rom (/showthread.php?tid=1185)



بار و بسته كردن در CD Rom - Ghoghnus - 10-31-2011

این قطعه کد cd rom را باز و بسته مي كند
کد:
using System.Runtime.InteropServices;

using System.Text;

...

public static void Main( )

{

   int result = mciSendString

      ("set cdaudio door open", null, 0, IntPtr.Zero);

   result =

      mciSendString ("set cdaudio door closed",

      null, 0, IntPtr.Zero);

}

                                  

[DllImport("winmm.dll", EntryPoint="mciSendStringA", CharSet=CharSet.Ansi)]

protected static extern int mciSendString

   (string mciCommand,

   StringBuilder returnValue,

   int returnLength, IntPtr callback);