all groups > vj# > april 2004 >
You're in the

vj#

group:

Namespace name could not be found


Namespace name could not be found Just Started
4/19/2004 10:36:01 PM
vj#:
I have two J# VS .Net 2003 projects that compile and
execute correctly on their own.

I would like the second project to launch from within the
first project. Therefore, I added the second project to
the first, via "add project/existing", and added a button
(and code) to launch the second project (from the first).
I receive the error: "The type or namespace name could
not be found (are you missing a using directive or an
assembly reference?)" and do not understand this error.
I am assuming that the second project contents have to be
made known to the first project, but I am unsure how to
do this.
Thanks.
Re: Namespace name could not be found Lars-Inge Tønnessen
4/21/2004 1:09:31 AM
Please try this:
System.Diagnostics.Process.Start( "notepad.exe" );

This line will start the Notepad editor. Specify you second application
here.

If you want to include an other project in a project, it must be a reference
to a library (dll).
Or you will have to include every source file.


Lars-Inge Tønnessen
www.larsinge.com

AddThis Social Bookmark Button