rowe_newsgroups
Wed Mar 12 06:37:13 CDT 2008
On Mar 12, 7:26 am, kimiraikkonen <kimiraikkone...@gmail.com> wrote:
> On Mar 12, 1:12 pm, "Patrice" <
http://www.chez.com/scribe/> wrote:
>
>
>
> > Do you have a specific problem ? This is really not that different. Get =
and
> > Set as well as writing functions , classes etc... are not DLL specific b=
ut a
> > general language feature.
>
> > I would suggest reading at least once the whole language specification..=
.
>
> > --
> > Patrice
>
> > "kimiraikkonen" <kimiraikkone...@gmail.com> a =E9crit dans le message de=
news:
> > 7fd8aef8-fad9-42a7-b348-35474ef10...@x41g2000hsb.googlegroups.com...
>
> > > Hi,
> > > On the net, there are no much explanatory examples that tells how to
> > > write a DLL using VB.NET. There are a few but completely lack of
> > > teaching ones that isn't useful for me. Also i had some books but none=
> > > of them tells how to write a DLL step by step and deeply and i'd like
> > > to know the priciples of class libraries rather than coding in a
> > > regular exe.
>
> > > So, i'd like to know what and how i should know writing DLL's
> > > functions, properties (what get & set do and their arguments in dll),
> > > interfaces,
>
> > > The only clue about writing a DLL i had in that thread (Thanks Tom):
> > >
http://groups.google.com/group/microsoft.public.dotnet.languages.vb/b..=
.
>
> > > But i want to extend and figure out what principles and techniques
> > > must be applied further, any and more code samples are greatly
> > > appreciated.
>
> > > Thanks- Hide quoted text -
>
> > - Show quoted text -
>
> Not to solve an existing problem. Actually, i'm looking an all-in-one
> DLL sample that covers all issues (functions, properties get - set and
> more i wish to know) to learn what a DLL's anatomy is all about.
A dll is nothing more than a compile group of classes. If you can
write a class, the only thing you need to do is change the build
output to a library (dll) instead of an executable (exe).
Thanks,
Seth Rowe [MVP]