Click here to Skip to main content
15,890,512 members
Home / Discussions / C#
   

C#

 
GeneralRe: List in c# Pin
Sonia Gupta6-Mar-08 20:24
Sonia Gupta6-Mar-08 20:24 
GeneralRe: List in c# Pin
Christian Graus6-Mar-08 20:47
protectorChristian Graus6-Mar-08 20:47 
GeneralCalling forms Pin
Gregory Bryant6-Mar-08 18:59
Gregory Bryant6-Mar-08 18:59 
GeneralRe: Calling forms Pin
Ajay.k_Singh6-Mar-08 19:06
Ajay.k_Singh6-Mar-08 19:06 
GeneralRe: Calling forms Pin
Gregory Bryant7-Mar-08 6:48
Gregory Bryant7-Mar-08 6:48 
GeneralRe: Calling forms Pin
Christian Graus6-Mar-08 19:48
protectorChristian Graus6-Mar-08 19:48 
GeneralRead DLL Pin
rowdy_vc++6-Mar-08 18:52
rowdy_vc++6-Mar-08 18:52 
GeneralRe: Read DLL Pin
Ajay.k_Singh6-Mar-08 19:22
Ajay.k_Singh6-Mar-08 19:22 
If you only want to use a third party DLL you may simply add reference of DLL in your project and create an object of the class.

If you want to inherit the existing DLL and want to extend functionality of existing class or control, by creating your own custom class library. Use following steps-

1) Start a project of type class library .
2) Add reference of existing DLL file.
3) Inherit the existing class, such as –

public class Class1:ExistingDll.ExistingClass
{
public Class1()
{
//
// TODO: Add constructor logic here
//
}
}

After this you may extend functionalities of existing class.

I hope this helps.

-Dave.

Dave Traister,
ComponentOne LLC.
www.componentone.com

GeneralBrowse for a file and open the file. Pin
new2pgrmg6-Mar-08 18:33
new2pgrmg6-Mar-08 18:33 
GeneralRe: Browse for a file and open the file. Pin
Christian Graus6-Mar-08 18:35
protectorChristian Graus6-Mar-08 18:35 
Generalusing OR in switch case statements Pin
liptonIcedTea6-Mar-08 18:15
liptonIcedTea6-Mar-08 18:15 
GeneralRe: using OR in switch case statements Pin
Christian Graus6-Mar-08 18:31
protectorChristian Graus6-Mar-08 18:31 
GeneralRe: using OR in switch case statements Pin
mav.northwind6-Mar-08 19:01
mav.northwind6-Mar-08 19:01 
GeneralRe: using OR in switch case statements Pin
PIEBALDconsult7-Mar-08 6:01
mvePIEBALDconsult7-Mar-08 6:01 
QuestionDrawing on a tabPage Pin
Roger CS6-Mar-08 17:58
Roger CS6-Mar-08 17:58 
GeneralRe: Drawing on a tabPage Pin
Christian Graus6-Mar-08 18:34
protectorChristian Graus6-Mar-08 18:34 
GeneralRe: Drawing on a tabPage Pin
Ajay.k_Singh6-Mar-08 19:00
Ajay.k_Singh6-Mar-08 19:00 
GeneralRecommended placement of Main() Pin
Eric Cook6-Mar-08 17:51
Eric Cook6-Mar-08 17:51 
GeneralRe: Recommended placement of Main() Pin
Christian Graus6-Mar-08 17:53
protectorChristian Graus6-Mar-08 17:53 
JokeRe: Recommended placement of Main() Pin
PIEBALDconsult7-Mar-08 5:43
mvePIEBALDconsult7-Mar-08 5:43 
QuestionHow to drag & drop shape drawn by GDI+ in picture box area? Pin
yuenli6-Mar-08 16:05
yuenli6-Mar-08 16:05 
GeneralRe: How to drag & drop shape drawn by GDI+ in picture box area? Pin
Christian Graus6-Mar-08 17:25
protectorChristian Graus6-Mar-08 17:25 
GeneralRe: How to drag & drop shape drawn by GDI+ in picture box area? Pin
yuenli6-Mar-08 18:25
yuenli6-Mar-08 18:25 
GeneralRe: How to drag & drop shape drawn by GDI+ in picture box area? Pin
Christian Graus6-Mar-08 18:33
protectorChristian Graus6-Mar-08 18:33 
GeneralRe: How to drag & drop shape drawn by GDI+ in picture box area? Pin
yuenli6-Mar-08 18:43
yuenli6-Mar-08 18:43 

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.