Namespace Question

  • Thread starter Thread starter Dave Londeck
  • Start date Start date
D

Dave Londeck

I am generating several namespaces to be used as code behind supplements.
Many namespaces use functions procedures from different namespaces.

I am using vbc to complile these namespaces and I am getting errors like ...
C:\Inetpub\wwwroot\ASP-AdoHelper\bin\TableWork.vb(221) : error BC30002: Type
'SQ
LObjects.SQLObjects' is not defined.

SQ
LObjects.SQLObjects' is in a different namespace. I tried to inherit the
namespace and class but it did not work any different... any Suggestions,
Comments?
 
* "Dave Londeck said:
I am generating several namespaces to be used as code behind supplements.
Many namespaces use functions procedures from different namespaces.

I am using vbc to complile these namespaces and I am getting errors like ...
C:\Inetpub\wwwroot\ASP-AdoHelper\bin\TableWork.vb(221) : error BC30002: Type
'SQ
LObjects.SQLObjects' is not defined.

SQ
LObjects.SQLObjects' is in a different namespace. I tried to inherit the
namespace and class but it did not work any different... any Suggestions,
Comments?

Are you compiling from command line (using "vbc.exe")? You can specify
imports by adding "/imports:" followed by a list of imports (more
information in the documentation for the command line compiler).
 
Back
Top