Up until this morning, I had some VS2005 projects in the path:
C:\TanPgms - 25\
This morning I moved them to this path to align myself with the other developer here:
My Documents\Visual Studio 2005\Projects\TanPgms\Invoice2
When I execute this code in another project:
System.Diagnostics.Process.Start("invoice2.exe", s2).WaitForExit()
(BTW that application has a reference to the invoice2.exe program that is that new path of: My Documents\Visual Studio 2005\Projects\TanPgms\Invoice2\bin\debug), I get the following error:
System.NullReferenceException: Object reference not set to an instance of an object.
at BLLCls..ctor() in C:\TanPgms - 25\Invoice2\BLL.cs:line 78
at invoice1.Form1.Form1_Load(Object sender, EventArgs e) in C:\TanPgms - 25\Invoice2\Form1.cs:line 498
at System.Windows.Forms.Form.OnLoad(EventArgs e)
at System.Windows.Forms.Form.OnCreateControl()
Why is the old path still being referenced?
Thanks in advance,
Jerry Scannell
C:\TanPgms - 25\
This morning I moved them to this path to align myself with the other developer here:
My Documents\Visual Studio 2005\Projects\TanPgms\Invoice2
When I execute this code in another project:
System.Diagnostics.Process.Start("invoice2.exe", s2).WaitForExit()
(BTW that application has a reference to the invoice2.exe program that is that new path of: My Documents\Visual Studio 2005\Projects\TanPgms\Invoice2\bin\debug), I get the following error:
System.NullReferenceException: Object reference not set to an instance of an object.
at BLLCls..ctor() in C:\TanPgms - 25\Invoice2\BLL.cs:line 78
at invoice1.Form1.Form1_Load(Object sender, EventArgs e) in C:\TanPgms - 25\Invoice2\Form1.cs:line 498
at System.Windows.Forms.Form.OnLoad(EventArgs e)
at System.Windows.Forms.Form.OnCreateControl()
Why is the old path still being referenced?
Thanks in advance,
Jerry Scannell