vb.net compiling

  • Thread starter Thread starter Tim Shelton
  • Start date Start date
T

Tim Shelton

Anybody familiar with writing programs in VB.net and them trying to install
them on other machines? I get an error that the target machine isn't .net
enabled? How do I get around this? Can I complie VB.net code on any
platform other than .net? I couldn't find that option.
 
* "Tim Shelton said:
Anybody familiar with writing programs in VB.net and them trying to install
them on other machines? I get an error that the target machine isn't .net
enabled? How do I get around this? Can I complie VB.net code on any
platform other than .net? I couldn't find that option.

The .NET Framework must be installed in order to run the application.

Create a setup that includes the .NET Framework:

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]>
<URL:http://workspaces.gotdotnet.com/vsboot/>

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>
 
VB has always required a framework, unmannaged C++ is one of the few that
doesn't require one.
 
Back
Top