How to build *.dll ?

  • Thread starter Thread starter Agnes
  • Start date Start date
A

Agnes

I create two project A, & B . A included several baseforms like search,
print,etc
For project B , some form will inherits the forms in prjA .
In project B, I try to add the referece of prjA and I am fail, i can't find
any *.dll in prjA.
How can I build the *.dll of prj A?

Thanks A lot.
From Agnes
 
Agnes said:
I create two project A, & B . A included several baseforms like
search, print,etc
For project B , some form will inherits the forms in prjA .
In project B, I try to add the referece of prjA and I am fail, i
can't find any *.dll in prjA.
How can I build the *.dll of prj A?

In the project properties, change the project type of project A to
"Classlibrary".


--
Armin

How to quote and why:
http://www.plig.net/nnq/nquote.html
http://www.netmeister.org/news/learn2quote.html
 
* "Agnes said:
I create two project A, & B . A included several baseforms like search,
print,etc
For project B , some form will inherits the forms in prjA .
In project B, I try to add the referece of prjA and I am fail, i can't find
any *.dll in prjA.
How can I build the *.dll of prj A?

Are you sure 'prjA' is of type "Class library"? If it's not, you can
change that in the project properties. If you are using VB.NET
Standard, you will have to use this workaround to be able to create
class libraries:

<URL:http://www.google.de/[email protected]>
 
Thanks a lot, I don't know "I need to set prjA as class libraries" . In the
very beginning, I set it as window applications.
Thanks a lot
 
Back
Top