Dear, I have 2 folders, one called DBDaccess and the other call BLS.
Within each folder are a bunch of classes, for instance,
Namespace BLS
Public Class A
Public Function A ()
--
end function
public function B ()
---
End function
ENd Class
There about 4 classes and each applies also to DBDaccess.
Now, BLS refrences DBDaccess.dll and the userInterface folder references BLS.dll.
So far, despite the fact these dlls are referenced, I either get an error that the dlls are not found or I get an error that the functions contained within them need to be declared.
I must be doing something wrong.
Out of desparation, I copied all the functions inside the UserInterface folder.
The now look like this:
NameSpace UserInterface
Page_load () event
Then the functions from BLS and DBAcess folders follow thus:
Public Class A
Public Function A()
--
End function
Public Function B()
--
End Function
Public Function C ()
--
End function
End Class 'end NamesPace BLS
End Class 'End UserInterface Namespace
Here are my questions,
Why am I having problem referencing these DLLs?
2, Is it possible to nest Public classesses?
In other words, is it possible to use Public Class within another class?
Thanks in advance
Within each folder are a bunch of classes, for instance,
Namespace BLS
Public Class A
Public Function A ()
--
end function
public function B ()
---
End function
ENd Class
There about 4 classes and each applies also to DBDaccess.
Now, BLS refrences DBDaccess.dll and the userInterface folder references BLS.dll.
So far, despite the fact these dlls are referenced, I either get an error that the dlls are not found or I get an error that the functions contained within them need to be declared.
I must be doing something wrong.
Out of desparation, I copied all the functions inside the UserInterface folder.
The now look like this:
NameSpace UserInterface
Page_load () event
Then the functions from BLS and DBAcess folders follow thus:
Public Class A
Public Function A()
--
End function
Public Function B()
--
End Function
Public Function C ()
--
End function
End Class 'end NamesPace BLS
End Class 'End UserInterface Namespace
Here are my questions,
Why am I having problem referencing these DLLs?
2, Is it possible to nest Public classesses?
In other words, is it possible to use Public Class within another class?
Thanks in advance