|
-
Nov 18th, 2003, 01:40 PM
#1
Thread Starter
New Member
.exe file created in VB.NET running on the PC without VB
Does anybody know hot to make .exe file created in VB.NET running on the mchines without VB.NET being installed? Is there should be some piece of code that lets do it?
Thanks
-
Nov 18th, 2003, 01:57 PM
#2
Yeah. Install the .NET framework on the PC.
-
Nov 18th, 2003, 02:02 PM
#3
Addicted Member
I think you'll need to have the vb.net runtime file installed on the computer that will be running your program. Runtime files for .net are available at the MSDN site. You can also get the .net framework via the Windows Update function. See
http://msdn.microsoft.com/library/de...ageruntime.asp for more info. The files are available at http://www.microsoft.com/downloads/d...displaylang=en
Hope this helps.
-
Nov 19th, 2003, 08:22 AM
#4
Hyperactive Member
Originally posted by GSIV
I think you'll need to have the vb.net runtime file installed on the computer that will be running your program
In previous versions of VB there needed to be a runtime DLL file on the computer in order for the VB application to run.
With VB.NET there is no more runtime DLL.
All .NET applications require the .NET Framework to be installed on the machine that is going to run the applications, no matter which .NET language is used to write the application.
All .NET applications are compiled into MSIL (Microsoft Intermediate Language), which is then Interpreted/JIT (Just In-Time) Compiled by the .NET Framework on the machine that is running it.
In theory, if the OS supports the .NET Framework then any .NET application will be able to run on a computer with that OS. There is an open source implementation of the .NET Framework called Mono and it is located at http://www.go-mono.org. Mono is being created to give Mac OS, Linux, Windows, and other OS's support for the .NET Framework.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|