Connecting Tech Pros Worldwide Forums | Help | Site Map

making DLL's

Rob T
Guest
 
Posts: n/a
#1: Nov 21 '05
I have a standard Windows Application with just a form and a few functions
in a seperate class file. Is there some way when it compiles, that the
class is built into a separate DLL? I would like to use it in other
applications. I'm aware that I could create Class Library project to do
this, but I would like to keep the exe in the same project so that I can
quickly test/debug my classes.

Thanks.

-Rob T.

PS.... I'm sure this has some easy answer. ;-)



Marina
Guest
 
Posts: n/a
#2: Nov 21 '05

re: making DLL's


The easy answer is, you have to put it in a Class Library project. You can
have both projects under the same solution, for easy testing if you want.
But anything you want in a DLL, has to be in a separate project.

"Rob T" <RTorcellini@DONTwalchemSPAM.com> wrote in message
news:%23AMEbBlqFHA.1028@TK2MSFTNGP12.phx.gbl...[color=blue]
>I have a standard Windows Application with just a form and a few functions
>in a seperate class file. Is there some way when it compiles, that the
>class is built into a separate DLL? I would like to use it in other
>applications. I'm aware that I could create Class Library project to do
>this, but I would like to keep the exe in the same project so that I can
>quickly test/debug my classes.
>
> Thanks.
>
> -Rob T.
>
> PS.... I'm sure this has some easy answer. ;-)
>[/color]


Rob T
Guest
 
Posts: n/a
#3: Nov 21 '05

re: making DLL's


Thanks. That's what I'm doing now...seems to work find for my simple needs.
;-)

"Marina" <someone@nospam.com> wrote in message
news:ueYyXRlqFHA.4072@TK2MSFTNGP09.phx.gbl...[color=blue]
> The easy answer is, you have to put it in a Class Library project. You can
> have both projects under the same solution, for easy testing if you want.
> But anything you want in a DLL, has to be in a separate project.
>
> "Rob T" <RTorcellini@DONTwalchemSPAM.com> wrote in message
> news:%23AMEbBlqFHA.1028@TK2MSFTNGP12.phx.gbl...[color=green]
>>I have a standard Windows Application with just a form and a few functions
>>in a seperate class file. Is there some way when it compiles, that the
>>class is built into a separate DLL? I would like to use it in other
>>applications. I'm aware that I could create Class Library project to do
>>this, but I would like to keep the exe in the same project so that I can
>>quickly test/debug my classes.
>>
>> Thanks.
>>
>> -Rob T.
>>
>> PS.... I'm sure this has some easy answer. ;-)
>>[/color]
>
>[/color]


Closed Thread