directX 9.0 sdk...

  • Thread starter Thread starter Bad_Kid
  • Start date Start date
B

Bad_Kid

just installed, computer restarted, and now in c# when I write

using System;

using System.Drawing;

using System.Windows.Forms;

using System.IO;

using Microsoft.DirectX;

....

The type or namespace name 'DirectX' does not exist in the class or
namespace 'Microsoft' (are you missing an assembly reference?)

why?? How can I add it manually??? What to do?

Thax!!!!
 
Bad_Kid said:
just installed, computer restarted, and now in c# when I write

using System;

using System.Drawing;

using System.Windows.Forms;

using System.IO;

using Microsoft.DirectX;

...

The type or namespace name 'DirectX' does not exist in the class or
namespace 'Microsoft' (are you missing an assembly reference?)

why?? How can I add it manually??? What to do?

How about adding some references to the DX9 managed assemblies? :) Check out
the example solutions for details.

Frans.
 
The type or namespace name 'DirectX' does not exist in the class or
namespace 'Microsoft' (are you missing an assembly reference?)

Maybe you have to reference it?
Project -> Add Reference inside VStudio.

Regards,
Wessel
 
There's a DirectX project in the "new" dialog....start one those, if just to
see what's different.
 
Bad_Kid said:
just installed, computer restarted, and now in c# when I write

using System;

using System.Drawing;

using System.Windows.Forms;

using System.IO;

using Microsoft.DirectX;

...

The type or namespace name 'DirectX' does not exist in the class or
namespace 'Microsoft' (are you missing an assembly reference?)

why?? How can I add it manually??? What to do?

Thax!!!!

Bad_Kid. u are missing the References part which is how u will resolve
this error.

Umer.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top