Re: Can't see namespace
- From: "Armin Zingler" <az.nospam@xxxxxxxxxx>
- Date: Mon, 12 Nov 2007 09:46:19 +0100
"tshad" <tfs@xxxxxxxxxxxxxx> schrieb
I am using vb.net VS 2003 and can't seem to see my namespace.
I have 2 files (form1.vb and DBTypes.vb).
My DBTypes.vb is:
************************************************
' Create to new variable types to handle nulls and track changes '
to standard variable types. This is for use with database
variables. ' This will tell us if a vaiable has changed, give us the
original and current value,
' and tell us whether the current value and original value is/was
null or not.
imports System
imports System.IO
Namespace FtsData
My vb file is:
****************************
Imports FtsData
I am getting 2 errors:
Namespace or type 'FtsData' for the Imports 'FtsData' cannot be
found.
and
Type 'StringType' is not defined.
But I have the Imports statement and StringType is in the DBTypes.vb
file.
What am I missing?
Use the full qualified name
Imports Rootnamespace.FtsData
where Rootnamespace is the projects's root namespace in the project properties.
Armin
.
- Follow-Ups:
- Re: Can't see namespace
- From: tshad
- Re: Can't see namespace
- References:
- Can't see namespace
- From: tshad
- Can't see namespace
- Prev by Date: Numbers & Numbers
- Next by Date: Re: ProgressBar Incrementation
- Previous by thread: Can't see namespace
- Next by thread: Re: Can't see namespace
- Index(es):