I am very new to Visual C# and can't figure out how to install the wiimote library. Can someone tell me how to do so.

link|improve this question

69% accept rate
"The Wiimote library" is not something that's out-of-the-box with C# development tools and isn't necessarily well-known, so could you provide a link to clarify what you're talking about and give a few examples of what you've tried? – nlawalker Jun 10 '10 at 15:05
@nlawalker heres a link about what I am talking about: blogs.msdn.com/b/coding4fun/archive/2007/03/14/1879033.aspx – Omar Jun 10 '10 at 15:47
feedback

1 Answer

up vote 1 down vote accepted

You need to add a reference to the dll.

In the project you want to use the library in open the Solution Explorer. Expand it until you see something like:

Solution 'MyApplication' (1 project)
-  MyApplication
   + Properties
   + References
   + ...

Right click on the References section, select "Add Reference..." then change to the Browse tab. Browse to the folder where you've installed the wiimote library and select the dll. Click "OK" and you should be done.

link|improve this answer
What is the references secion? Where do I find it. – Omar Jun 10 '10 at 15:46
@Omar - I've updated the answer – ChrisF Jun 10 '10 at 15:51
I got it. Thanks a lot. – Omar Jun 10 '10 at 15:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.