I'm new in VB.Net

  • Thread starter Thread starter Reza Zreaian Fard via .NET 247
  • Start date Start date
R

Reza Zreaian Fard via .NET 247

(Type your message here)

--------------------------------
From: Reza Zreaian Fard
Hi
i have problem in executing my project in other PC that haven't VB.NET installed
when i execute my project in other PC I got a error that tel me i can't execute it because i haven't some .dll files
please tel me what should i do?
should client's have Visual Studio .Net in their PC for executing my software or i should change some configurations?
Please help me
Please
 
The target PC's need to have the .NET framwork installed for your
application to work - you can bundle it with an install project or download
and install from Microsoft

http://msdn.microsoft.com/netframework/technologyinfo/howtoget/





Reza Zreaian Fard via .NET 247 said:
(Type your message here)

--------------------------------
From: Reza Zreaian Fard
Hi
i have problem in executing my project in other PC that haven't VB.NET installed
when i execute my project in other PC I got a error that tel me i can't
execute it because i haven't some .dll files
please tel me what should i do?
should client's have Visual Studio .Net in their PC for executing my
software or i should change some configurations?
 
Have you made it a release build? I found that debug builds crash out with
out vs.net installed.

Steve

Reza Zreaian Fard via .NET 247 said:
(Type your message here)

--------------------------------
From: Reza Zreaian Fard
Hi
i have problem in executing my project in other PC that haven't VB.NET installed
when i execute my project in other PC I got a error that tel me i can't
execute it because i haven't some .dll files
please tel me what should i do?
should client's have Visual Studio .Net in their PC for executing my
software or i should change some configurations?
 
debug builds should not crash with out vs.net installed, you only need .NET
framework to run an application created in .NET... If you are experienceing
a problem, remove the PDB files (precompiled debug information) from the
folder the app is in, thoes may be your problem.


Pug said:
Have you made it a release build? I found that debug builds crash out with
out vs.net installed.

Steve

(Type your message here)

--------------------------------
From: Reza Zreaian Fard
Hi
i have problem in executing my project in other PC that haven't VB.NET installed
when i execute my project in other PC I got a error that tel me i can't
execute it because i haven't some .dll files
please tel me what should i do?
should client's have Visual Studio .Net in their PC for executing my
software or i should change some configurations?
 
Did that, I only copied the executable and a fresh framework 1.1 install and
the debug version crashes out each time but the release version worked ok.



Brian Henry said:
debug builds should not crash with out vs.net installed, you only need ..NET
framework to run an application created in .NET... If you are experienceing
a problem, remove the PDB files (precompiled debug information) from the
folder the app is in, thoes may be your problem.
 
works just find for me, this is how we test things with out doing release
builds... just copy the debug files to test machines... never had a problem
 
Back
Top