C#でDXLib使用についてです。
Posted: 2012年5月29日(火) 12:15
始めて投稿します。
書きのコードがエラーが出ます。
何故、動かないのでしょうか?
C#を使う上での設定はやっています。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using DxLibDLL;
namespace WindowsFormsApplication1
{
public partial class Form1 :Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
DX.DxLib_Init();
DX.WaitKey();
DX.DxLib_End();
}
}
}
DX.DxLib_Init(); <- の所で間違ったフォーマットのプログラムを読み込もうとしました。 (HRESULT からの例外: 0x8007000B)とでますが何故か解る人、よろしくお願いします。
書きのコードがエラーが出ます。
何故、動かないのでしょうか?
C#を使う上での設定はやっています。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using DxLibDLL;
namespace WindowsFormsApplication1
{
public partial class Form1 :Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
DX.DxLib_Init();
DX.WaitKey();
DX.DxLib_End();
}
}
}
DX.DxLib_Init(); <- の所で間違ったフォーマットのプログラムを読み込もうとしました。 (HRESULT からの例外: 0x8007000B)とでますが何故か解る人、よろしくお願いします。