couch612 Posted April 28, 2003 Posted April 28, 2003 Will an executable created in Visual Basic .NET on a Windows XP machine run on a Windows 98 machine? Also, what if I am using API calls? Thanks. Quote
Guest mutant Posted April 29, 2003 Posted April 29, 2003 It will run, but Windows 98 is known for some very minor issues with .net framework. So couple things dont work excatly right. Quote
Cassio Posted April 29, 2003 Posted April 29, 2003 Remember, you have to install the .NET Framework on the Win98 machine. Quote Stream of Consciousness (My blog)
couch612 Posted April 29, 2003 Author Posted April 29, 2003 really? i remember when exe's where stand alone. then came DLLs, now you have to install an entire framework just to run an exe? are you sure!!?? Quote
*Gurus* divil Posted April 29, 2003 *Gurus* Posted April 29, 2003 .NET executables are not native code, they're mostly IL (Intermediate Language). You make use of the enormous .NET framework from your application to get things done, you're going to have to package it too. You can still windows apps in plain C that don't require any dependancies (except windows itself). Quote MVP, Visual Developer - .NET Now you see why evil will always triumph - because good is dumb. My free .NET Windows Forms Controls and Articles
couch612 Posted April 29, 2003 Author Posted April 29, 2003 so does any application written using any of the languages provided in Visual Studio.net require the .NET framework? is there one language in VS.net i can use to compile an exe that does not require the framework to execute? or should i go back to using VB 6.0 or Visual C++ instead? Quote
Guest mutant Posted April 29, 2003 Posted April 29, 2003 If you look at it different way, 20 mb of executables which will be pretty much required for most of the new programs is not so bad :) You can use the Win32 project type of C++ to create stand aloneapps. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.