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.
Lars-Inge T?nnessen - 21 Apr 2004 00:09 GMT
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