<TypeName> is not a Namespace

Description

A name of an object that is not a namespace is specified after the Imports statement when importing namespace contents.

Troubleshooting Tips

Specify the name of a namespace after the Imports keyword.

Example

Imports String;

Sub UserProc;
Begin
    
End Sub UserProc;

When the specified code is compiled, the following error is displayed: String is not a namespace. To resolve the error, specify a name of an existing namespace.

See also:

Compiler Messages