Reputation: 371
I downloaded the program here in this site which is a on screen keyboard.
http://www.codeproject.com/KB/miscctrl/touchscreenkeyboard/touchscreenkeyboard_src.zip
Am I right that for me to use this program or to add it in my existing c# program is to use only the dll?
If so how can I call it?
Upvotes: 0
Views: 98
Reputation: 2994
In the Solution Explorer,
Under "References", right Click -> "Add Reference" -> "Browse" to your dll and add.
Now in your code file on the top, Add : "using yourdllname.dll"
And you can use the dll provided functions.
Upvotes: 1
Reputation:
See:
Upvotes: 2
Reputation: 101680
In your Solution Explorer,
right Click your References
under your Project,
Click Add Reference
, then Click Browse
, find your .dll
file and Add it to your references.
Documentation: How to: Add and Remove References in Visual Studio (C#)
Upvotes: 5