エラーまたは例外は発生しません。 1つのウィンドウでC#LPT inpout32.dll
ボタン:
private void button1_Click(object sender, EventArgs e)
{
ControlPort.Output(0x378, 0xff);
}
とinpout.dllインタフェース:
class ControlPort
{
[DllImport("inpout32.dll", EntryPoint = "Out32")]
public static extern void Output(int adress, int value);
}
間違っていますか? D2のLEDは常に点灯しています。
私はWindows 7 x64 Ultimateを持っています。
+1、それを逃した。 –