Hmm.... I'm not sure you understand. I'm still trying to make use of a class name in the external assembly, but I'm trying to make use of it in a code-behind page, rather than a compiled class. Specifically, I have installed an external assembly called SimpleChart, which gives me a file called SimpleChart4.dll. Then, in a code-behind page I say: Imports SimpleChart4 which is the name of the namespace, and is the line used in all of their example code. However, it gives me an error, telling me that it doesn't recognize the type. In theory, if I had the Visual Studio.NET application, I could click on "Add Reference", choose the "COM" tab, and add a reference to the DLL, and then suddenly it should be able to recognize the SimpleChart4 namespace/type. However, since I do not use the Visual Studio.NET application, I'm wondering how to do this without.... ----Greg