![]() |
|
|
|||
|
Namespace question
Here is the deal, there is 1 DLL with a namespace of Billing and in
that namespace is a single class called corebillingreports. I added the DLL into my project and trying to setup another class that inherits from Billing.CoreBillingReports class. I try to setup the namespace for this as Billing.CompanyA with a class named ActiveBill. Active Bill inherits from Billing.CoreBillingReports class but it cant get it to work. When i set the namespace Billing.CompanyA I do not see CoreBillingReports class available under the Billing Namespace. My goal is to create a NameSpace where it goes Billing.[CompanyName] and in the company namespace all the different billing report classes. Thx in advance ''''''''''''''''''''''''''''''''''''''''DLL NameSpace Billing Class CoreBillingReports sub test () End sub End class End NameSpace '''''''''''''''''''''''''''''''''''''Class created for windows form project NameSpace Billing.CompanyA Class ActiveBill Inherits Billing.CoreBillingReports 'Dont see CoreBillingReports class listed Sub A () End Sub End Class End NameSpace |
|
|||
|
Re: Namespace question
Dans :
news:fe72dcbf-bb35-45ef-bb98-3f9da35840da@p25g2000hsf.googlegroups.com, TheVillageCodingIdiot écrivait : > Here is the deal, there is 1 DLL with a namespace of Billing and in > that namespace is a single class called corebillingreports. I added > the DLL into my project and trying to setup another class that > inherits from Billing.CoreBillingReports class. I try to setup the > namespace for this as Billing.CompanyA with a class named ActiveBill. > Active Bill inherits from Billing.CoreBillingReports class but it cant > get it to work. When i set the namespace Billing.CompanyA I do not see > CoreBillingReports class available under the Billing Namespace. What are the root namespaces defined for each project in the project properties ? -- Fred foleide@free.fr |
|
|||
|
Re: Namespace question
Hi,
Have you added first DLL to references? If not you'll never see this class. Ilya On Tue, 08 Jul 2008 09:44:58 -0400, TheVillageCodingIdiot <whosyodaddy1019@hotmail.com> wrote: > Here is the deal, there is 1 DLL with a namespace of Billing and in > that namespace is a single class called corebillingreports. I added > the DLL into my project and trying to setup another class that > inherits from Billing.CoreBillingReports class. I try to setup the > namespace for this as Billing.CompanyA with a class named ActiveBill. > Active Bill inherits from Billing.CoreBillingReports class but it cant > get it to work. When i set the namespace Billing.CompanyA I do not see > CoreBillingReports class available under the Billing Namespace. My > goal is to create a NameSpace where it goes Billing.[CompanyName] and > in the company namespace all the different billing report classes. Thx > in advance > > ''''''''''''''''''''''''''''''''''''''''DLL > NameSpace Billing > Class CoreBillingReports > sub test () > End sub > End class > End NameSpace > > > '''''''''''''''''''''''''''''''''''''Class created for windows form > project > NameSpace Billing.CompanyA > Class ActiveBill > Inherits Billing.CoreBillingReports 'Dont see > CoreBillingReports class listed > Sub A () > End Sub > End Class > End NameSpace > -- Using Opera's revolutionary e-mail client: http://www.opera.com/mail/ |
|
|||
|
RE: Namespace question
Add 'Public' in front of Class CoreBillingReports.
"TheVillageCodingIdiot" wrote: > Here is the deal, there is 1 DLL with a namespace of Billing and in > that namespace is a single class called corebillingreports. I added > the DLL into my project and trying to setup another class that > inherits from Billing.CoreBillingReports class. I try to setup the > namespace for this as Billing.CompanyA with a class named ActiveBill. > Active Bill inherits from Billing.CoreBillingReports class but it cant > get it to work. When i set the namespace Billing.CompanyA I do not see > CoreBillingReports class available under the Billing Namespace. My > goal is to create a NameSpace where it goes Billing.[CompanyName] and > in the company namespace all the different billing report classes. Thx > in advance > > ''''''''''''''''''''''''''''''''''''''''DLL > NameSpace Billing > Class CoreBillingReports > sub test () > End sub > End class > End NameSpace > > > '''''''''''''''''''''''''''''''''''''Class created for windows form > project > NameSpace Billing.CompanyA > Class ActiveBill > Inherits Billing.CoreBillingReports 'Dont see > CoreBillingReports class listed > Sub A () > End Sub > End Class > End NameSpace > > |
|
|||
|
Re: Namespace question
On Jul 8, 8:44*am, TheVillageCodingIdiot <whosyodaddy1...@hotmail.com>
wrote: > Here is the deal, there is 1 DLL with a namespace of Billing and in > that namespace is a single class called corebillingreports. I added > the DLL into my project and trying to setup another class that > inherits from Billing.CoreBillingReports class. I try to setup the > namespace for this as Billing.CompanyA with a class named ActiveBill. > Active Bill inherits from Billing.CoreBillingReports class but it cant > get it to work. When i set the namespace Billing.CompanyA I do not see > CoreBillingReports class available under the Billing Namespace. My > goal is to create a NameSpace where it goes Billing.[CompanyName] and > in the company namespace all the different billing report classes. Thx > in advance > > ''''''''''''''''''''''''''''''''''''''''DLL > NameSpace Billing > * *Class CoreBillingReports > * * * * sub test () > * * * * End sub > * *End class > End NameSpace > > '''''''''''''''''''''''''''''''''''''Class created for windows form > project > NameSpace Billing.CompanyA > * * *Class ActiveBill > * * * * * *Inherits Billing.CoreBillingReports 'Dont see > CoreBillingReports class listed > * * * * * *Sub A () > * * * * * *End Sub > * * *End Class > End NameSpace Ok i was able to figure it out I think. Correct me if my assumption is wrong, but can you not have a child namespace if the Parent Namespace has a class inside it? What I did was move the Billing.CoreBillingReports class into its own namespace of Billing.CoreBillingReports.CoreBillingClass and now I can see CSP under Billing. |
|
|||
|
Re: Namespace question
Sorry, I guess I missed the word public in the code you posted...
Your solution looks right. I have never tried a namespace equal to a class in a parent namespace, but I don't recall seeing that in other libraries either. "TheVillageCodingIdiot" wrote: > Public is in from of the class name. > |
![]() |
|
| Thread Tools | Search this Thread |
| Display Modes | |
|
|