|
-
Apr 28th, 2005, 06:50 AM
#1
Thread Starter
Member
.NET framework
This is some thing I been wondering for a while. is there a way to make a program in VB.NET without needed the framework installed to run it on a computer?
Last edited by tonyrueb; May 1st, 2005 at 08:20 PM.
-
Apr 28th, 2005, 07:03 AM
#2
Fanatic Member
-
Apr 28th, 2005, 07:04 AM
#3
Addicted Member
Re: .NET framework
No. VB.NET programs will not run without having the .NET Framework installed.
-
Apr 28th, 2005, 08:18 AM
#4
-
Apr 28th, 2005, 08:45 AM
#5
Addicted Member
Re: .NET framework
Hm, that's an interesting-looking tool. It does copy parts of the Frameowrk to the target machine, though, even if it only copies the parts that you need. That blurb about compling IL to native code doesn't appear to be true based on the followup page.
-
Apr 28th, 2005, 08:47 AM
#6
Re: .NET framework
Emm it a good think to know that !!!
-
Apr 29th, 2005, 10:13 AM
#7
Re: .NET framework
Still requires you to have something installed, doesn't it? I don't see the point. Eventually, if you have 15 different .net apps on your machine, you might as well have the whole framework on your machine!
-
Apr 29th, 2005, 01:38 PM
#8
Addicted Member
Re: .NET framework
I'm not sure there's much value to it myself, Mendhak.
Fifteen years ago, when storage and RAM were at a premium, I could see how something like this would be very useful. Today, though, the .NET Framework's 38-megabyte disk footprint is chump change.
-
Apr 29th, 2005, 01:45 PM
#9
Re: .NET framework
im waiting for MS to start coming out with some of their own applications based on the framework... maybe an office version or something along those lines.. or a webbrowser...
probably not likely.. but it sure would get more users on board with .net and less worries about people having it or not having it...
-
Apr 29th, 2005, 10:39 PM
#10
Thread Starter
Member
Re: .NET framework
Not the answer I was hoping for. This leads me to another question though do you know why Microsoft decided to do this? Is there a good reason, or where they just being Microsoft?
-
Apr 30th, 2005, 10:27 AM
#11
Addicted Member
Re: .NET framework
.NET is Microsoft's answer to Sun Micrososystem's Java: a development platform for managed code running inside a controlled runtime environment. It's not a case of "just being Microsoft". The software development industry has embraced the managed-code model as productive, useful, and stable.
VB6 applications also require runtime libraries to be present in order to run. I don't understand why people complain about the Framework requirement like it's something new.
-
Apr 30th, 2005, 12:18 PM
#12
Re: .NET framework
Is managed code slower than unmanaged code though? Wouldn't be a good thing to make games on in my opinion.
-
Apr 30th, 2005, 12:23 PM
#13
Re: .NET framework
 Originally Posted by kleinma
im waiting for MS to start coming out with some of their own applications based on the framework... maybe an office version or something along those lines.. or a webbrowser...
probably not likely.. but it sure would get more users on board with .net and less worries about people having it or not having it...
I remember reading before Office 2003 came out that it was going to be partially written on .NET but it doesnt
require the Framework so I wonder if it is sef contained or if it was even true.
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum. 
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it! 
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6 
-
Apr 30th, 2005, 03:40 PM
#14
New Member
Re: .NET framework
 Originally Posted by Jacob Roman
Is managed code slower than unmanaged code though? Wouldn't be a good thing to make games on in my opinion.
Actually, classic VB is interpreted, which is quite slow. VB.NET code is compiled into MSIL bytecode, and then JIT-compiled into native language upon execution. In short, VB.NET is significantly faster than vanilla VB. :)
-
Apr 30th, 2005, 04:00 PM
#15
Re: .NET framework
 Originally Posted by HopeDagger
Actually, classic VB is interpreted, which is quite slow. VB.NET code is compiled into MSIL bytecode, and then JIT-compiled into native language upon execution. In short, VB.NET is significantly faster than vanilla VB. 
VB6 compiled to native code
it had both options of P code or native
-
Apr 30th, 2005, 04:00 PM
#16
Re: .NET framework
 Originally Posted by HopeDagger
Actually, classic VB is interpreted, which is quite slow. VB.NET code is compiled into MSIL bytecode, and then JIT-compiled into native language upon execution. In short, VB.NET is significantly faster than vanilla VB. 
Not according to this
http://externalweb.exhedra.com/Direc...M_NETvsVB6.asp
VB.Net is on average 1.034x slower (it performs at 96.7% of VB6's speed).
And VB6 is slow in IDE mode, yet faster in exe mode.
-
Apr 30th, 2005, 05:25 PM
#17
New Member
Re: .NET framework
I stand most potently corrected. :)
I was under the impression that VB was interpreted. :/
-
Apr 30th, 2005, 05:29 PM
#18
Re: .NET framework
Not since they gave the ability to compile the programs. It is interpreted in the IDE, for debuging purposes. The execution speeds up greatly when it is compiled.
-
Apr 30th, 2005, 07:05 PM
#19
Addicted Member
Re: .NET framework
I think, and I am almost sure that MS CRM is written in .Net.
There are no stupid questions, but a whole bunch of dumb sayings !
Save time on database code, try DataLG !
-
May 1st, 2005, 01:16 AM
#20
Re: .NET framework
It was quite apparent during that prime numbers contest we had several months ago.
-
May 1st, 2005, 08:20 PM
#21
Thread Starter
Member
Re: .NET framework
Well it looks like I got my answer and then some thank you.
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
|