T
TheVillageCodingIdiot
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
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