namespaces

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello All

I'm currently developing a VB.NET web application with Macromedia Dreamweaver MX 2004 and have come across a little problem. I can import namespaces like so.. Imports System.Web.UI etc. with no problem, yey. However I cannot seem to import any namespaces / classes that I make. Is there a directive I can include to tell VB.NET where to look for my class file? Oh yea, and I know that the .NET environment is way cooler and will Import my class in a second using something like... Imports MyWebApplication.Components.MyClas

This is the sort of thing I have got at the minute..

Class file in namespace: webapplication.admin.components.MyClas
Class file in folder: wwwroot\admin\components\MyClass.c

Web page in namespace: webapplication.admin.MyPag
Web page in folder: wwwroot\admin\newfolder\MyPage.asp

Hope someone can help..

Cheers
 
Hi Stuart,

Try

Project-> add references and than when it is in your IDE as another
"projects" else you can browse to it.

I hope this helps?

Cor
 
Back
Top