Click here to Skip to main content
15,888,076 members
Home / Discussions / C#
   

C#

 
GeneralRe: C# use dll in various directory locations Pin
sc steinhayse28-May-13 9:43
sc steinhayse28-May-13 9:43 
GeneralRe: C# use dll in various directory locations Pin
Dave Kreskowiak28-May-13 12:34
mveDave Kreskowiak28-May-13 12:34 
GeneralRe: C# use dll in various directory locations Pin
sc steinhayse28-May-13 14:14
sc steinhayse28-May-13 14:14 
GeneralRe: C# use dll in various directory locations Pin
Dave Kreskowiak28-May-13 16:14
mveDave Kreskowiak28-May-13 16:14 
AnswerRe: C# use dll in various directory locations Pin
sc steinhayse28-May-13 17:29
sc steinhayse28-May-13 17:29 
AnswerRe: C# use dll in various directory locations Pin
jschell28-May-13 8:43
jschell28-May-13 8:43 
QuestionC# obtain paramter values for dll Pin
sc steinhayse28-May-13 4:41
sc steinhayse28-May-13 4:41 
AnswerRe: C# obtain paramter values for dll Pin
Dave Kreskowiak28-May-13 4:56
mveDave Kreskowiak28-May-13 4:56 
First things first. Vocabulary.

A .DLL does not take parameters nor is it an application. A .DLL is a library of classes and methods that an application can use. Screwing up the terminology confuses people.

You always use a .DLL either by adding a reference to it in another application project, or depending on the .DLL type, can be accessed with P/Invoke (no reference required).

If referenced, you usually stick a using statement at the top to import the namespace of the classes you want to use in the .DLL. What you do after that depends on how you've written the code contained in the .DLL. Usually, you create an instance of a class with the code you want to use, then call the methods you need in that class.

GeneralRe: C# obtain paramter values for dll Pin
sc steinhayse28-May-13 9:14
sc steinhayse28-May-13 9:14 
GeneralRe: C# obtain paramter values for dll Pin
Dave Kreskowiak28-May-13 9:18
mveDave Kreskowiak28-May-13 9:18 
AnswerRe: C# obtain paramter values for dll Pin
sc steinhayse28-May-13 9:44
sc steinhayse28-May-13 9:44 
QuestionAdd Live TV in Asp.Net using c# Pin
Jak Anil27-May-13 23:40
Jak Anil27-May-13 23:40 
AnswerRe: Add Live TV in Asp.Net using c# Pin
Richard MacCutchan28-May-13 0:19
mveRichard MacCutchan28-May-13 0:19 
QuestionCombobox resets its value Pin
Thahir Pattanathel27-May-13 22:43
Thahir Pattanathel27-May-13 22:43 
AnswerRe: Combobox resets its value Pin
BobJanova27-May-13 23:46
BobJanova27-May-13 23:46 
GeneralRe: Combobox resets its value Pin
Thahir Pattanathel28-May-13 1:56
Thahir Pattanathel28-May-13 1:56 
AnswerRe: Combobox resets its value Pin
Abhinav S27-May-13 23:50
Abhinav S27-May-13 23:50 
GeneralRe: Combobox resets its value Pin
Thahir Pattanathel28-May-13 2:02
Thahir Pattanathel28-May-13 2:02 
QuestionMoving picture box with arrow key in vb.net while other controls are also in the same form Pin
Member 834762927-May-13 21:51
Member 834762927-May-13 21:51 
AnswerRe: Moving picture box with arrow key in vb.net while other controls are also in the same form Pin
Simon_Whale27-May-13 22:12
Simon_Whale27-May-13 22:12 
GeneralRe: Moving picture box with arrow key in vb.net while other controls are also in the same form Pin
lukeer28-May-13 0:18
lukeer28-May-13 0:18 
GeneralRe: Moving picture box with arrow key in vb.net while other controls are also in the same form Pin
Simon_Whale28-May-13 0:24
Simon_Whale28-May-13 0:24 
AnswerRe: Moving picture box with arrow key in vb.net while other controls are also in the same form Pin
lukeer28-May-13 0:20
lukeer28-May-13 0:20 
AnswerRe: Moving picture box with arrow key in vb.net while other controls are also in the same form Pin
Simon_Whale28-May-13 0:24
Simon_Whale28-May-13 0:24 
QuestionPuzzle Random Pin
Midnight Ahri27-May-13 20:28
Midnight Ahri27-May-13 20:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.