deploy question

  • Thread starter Thread starter \Allen Iverson\
  • Start date Start date
A

\Allen Iverson\

I have created a VB.net 2002 program on win xp and put it on SQL 2000
server. Then I try to run the exe in SQL 2000 server or shared folder. Both
gave me error. Is this not feasible?
 
Allen Iverson said:
I have created a VB.net 2002 program on win xp and put it on SQL 2000
server. Then I try to run the exe in SQL 2000 server or shared folder. Both
gave me error. Is this not feasible?

What error is it giving you?
 
Hi Allen!
Maybe you forgot to setup whe framework on the
destination computers.

As a side note it's bad practice to use your program on a
production SQL Server as it will compete for computers
resources.

Kind Regards
Jorge
 
"Just-In-Time Debugging Handler and CLR Remote Host

JIT Debugging component resitration is incorrect.

Please repair the installation of the most recent version of Visual Studio
..Net or Remote Debugging components.

Alternatively, execute the following command as an Administrator to manually
repair the JIT Debugging component registration:

"C:\Program Files\Common Files\Microsoft Shared\VS7Debug\vs7jit.exe"
/RegServer
 
Allen Iverson said:
"Just-In-Time Debugging Handler and CLR Remote Host

JIT Debugging component resitration is incorrect.

Please repair the installation of the most recent version of Visual Studio
.Net or Remote Debugging components.

Alternatively, execute the following command as an Administrator to manually
repair the JIT Debugging component registration:

"C:\Program Files\Common Files\Microsoft Shared\VS7Debug\vs7jit.exe"
/RegServer

That sounds very odd. Are you trying to run the code under debug?
 
In fact, can I deploy the file.exe compiled by visual basic.net with
Crystal Report control to a client machine and run the exe without vs.net
and cr? Is this feasible? Thanks.
 
Allen Iverson said:
In fact, can I deploy the file.exe compiled by visual basic.net with
Crystal Report control to a client machine and run the exe without vs.net
and cr? Is this feasible? Thanks.

You should certainly be able to run without VS.NET. I don't know about
Crystal Reports - you may need to copy a CR library as well. You'll
need the .NET framework, however.
 
What do you mean by .NET framework?

Jon Skeet said:
You should certainly be able to run without VS.NET. I don't know about
Crystal Reports - you may need to copy a CR library as well. You'll
need the .NET framework, however.
 
Jon,

Do you mean I need to install the .NET framework to every client
PC which I will run the .exe deployed by VB.net? Thanks.
 
* "\"Allen Iverson\" said:
Do you mean I need to install the .NET framework to every client
PC which I will run the .exe deployed by VB.net? Thanks.

Yes, but this can be done as part of the setup process:

Using Visual Studio .NET 2003 to Redistribute the .NET Framework
<URL:http://msdn.microsoft.com/library/en-us/dnnetdep/html/vsredistdeploy1_1.asp>

Plug-In:

<URL:http://groups.google.com/[email protected]>

Bootstrapper:

<URL:http://msdn.microsoft.com/vstudio/downloads/tools/bootstrapper/>

Microsoft Visual Studio .NET 2003 Bootstrapper Plug-In
<URL:http://www.microsoft.com/downloads/details.aspx?FamilyID=627921a0-d9e7-43d6-a293-72f9c370bd19>

<URL:http://workspaces.gotdotnet.com/vsboot/> (old URL)

Download
<URL:http://www.gotdotnet.com/community/...f0a23-f529-4158-8e0a-d187d16f41f1&newsId=1981>

Framework 1.1:

Redistributing the .NET Framework 1.1
<URL:http://msdn.microsoft.com/library/en-us/dnnetdep/html/redistdeploy1_1.asp>

..NET Framework 1.1 Deployment Guide
<URL:http://msdn.microsoft.com/library/en-us/dnnetdep/html/dotnetframedepguid1_1.asp>

..NET Framework 1.1 Redistributable Prerequisites
<URL:http://msdn.microsoft.com/library/en-us/dnnetdep/html/NETFx1Redistreq1_1.asp>

..NET Framework Redistributable Package 1.1 Technical Reference
<URL:http://msdn.microsoft.com/library/en-us/dnnetdep/html/dotnetfxref1_1.asp>

Framework 1.0:

..NET Framework Deployment Guide
<URL:http://msdn.microsoft.com/library/en-us/dnnetdep/html/dotnetframedepguid.asp>

Using Visual Studio .NET to Redistribute the .NET Framework
<URL:http://msdn.microsoft.com/library/en-us/dnnetdep/html/vsredistdeploy.asp>
 
Back
Top