Results 1 to 21 of 21

Thread: .NET framework

  1. #1

    Thread Starter
    Member
    Join Date
    Jan 2005
    Location
    Minnesota
    Posts
    46

    Resolved .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.

  2. #2
    Fanatic Member
    Join Date
    Jan 2005
    Location
    Cebu
    Posts
    607

    Re: .NET framework

    A short answer. No.

  3. #3
    Addicted Member
    Join Date
    Mar 2005
    Posts
    142

    Re: .NET framework

    No. VB.NET programs will not run without having the .NET Framework installed.

  4. #4
    Frenzied Member ntg's Avatar
    Join Date
    Sep 2004
    Posts
    1,449

    Re: .NET framework

    Only if you pay the $$$.
    "Feel the force...read the source..."
    Utilities: POPFileDebugViewProcess ExplorerWiresharkKeePassUltraVNCPic2Ascii
    .Net tools & open source: DotNetNukelog4NetCLRProfiler
    My open source projects: Thales SimulatorEFT CalculatorSystem Info ReporterVSS2SVNIBAN Functions
    Customer quote: "If the server has a RAID array, why should we bother with backups?"
    Programmer quote: "I never comment my code. Something that is hard to write should be impossible to comprehend."
    Ignorant quote: "I have no respect for universities, as they teach not practicle stuff, and charge money for"

  5. #5
    Addicted Member
    Join Date
    Mar 2005
    Posts
    142

    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.

  6. #6
    Frenzied Member Zakary's Avatar
    Join Date
    Mar 2005
    Location
    Canada, Quebec, Montreal
    Posts
    1,654

    Re: .NET framework

    Emm it a good think to know that !!!

  7. #7
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    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!

  8. #8
    Addicted Member
    Join Date
    Mar 2005
    Posts
    142

    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.

  9. #9
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    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...

  10. #10

    Thread Starter
    Member
    Join Date
    Jan 2005
    Location
    Minnesota
    Posts
    46

    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?

  11. #11
    Addicted Member
    Join Date
    Mar 2005
    Posts
    142

    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.

  12. #12
    Elite Hacker Jacob Roman's Avatar
    Join Date
    Aug 2004
    Location
    Miami Beach, FL
    Posts
    5,349

    Re: .NET framework

    Is managed code slower than unmanaged code though? Wouldn't be a good thing to make games on in my opinion.

  13. #13
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: .NET framework

    Quote 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 PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI 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

  14. #14
    New Member
    Join Date
    Apr 2005
    Posts
    3

    Re: .NET framework

    Quote 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. :)

  15. #15
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    Re: .NET framework

    Quote 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

  16. #16
    Elite Hacker Jacob Roman's Avatar
    Join Date
    Aug 2004
    Location
    Miami Beach, FL
    Posts
    5,349

    Re: .NET framework

    Quote 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.

  17. #17
    New Member
    Join Date
    Apr 2005
    Posts
    3

    Re: .NET framework

    I stand most potently corrected. :)

    I was under the impression that VB was interpreted. :/

  18. #18
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    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.

  19. #19
    Addicted Member
    Join Date
    Jan 2005
    Location
    Montréal
    Posts
    160

    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 !

  20. #20
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: .NET framework

    It was quite apparent during that prime numbers contest we had several months ago.

  21. #21

    Thread Starter
    Member
    Join Date
    Jan 2005
    Location
    Minnesota
    Posts
    46

    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
  •  



Click Here to Expand Forum to Full Width