How to make an exe file that works everywhere?

  • Thread starter Thread starter danijela
  • Start date Start date
D

danijela

Hi again! I have one more question. How can i make an exe file from my
..Net VB project which would work on win 98, win 2000 and so on...(I'm
using .Net Visual studio 2003 professional)
Thanks!

Danijela
 
danijela said:
Hi again! I have one more question. How can i make an exe file from my
.Net VB project which would work on win 98, win 2000 and so on...(I'm
using .Net Visual studio 2003 professional)

Make sure the classes and methods you are using are supported on these
operating systems. You can check which operating systems are required for a
certain member in its documentation. Note that the .NET Framework must be
installed on the machine in order to be able to run the application.
 
Yes, i forgot to mention that is it posible to make an exe file that
can work on a computer without the .NET framework?

Danijela
 
Yes, i forgot to mention is it posible to make an exe file that will
work without the .NET Framework installed?

Danijela
 
danijela said:
Yes, i forgot to mention that is it posible to make an exe file that
can work on a computer without the .NET framework?

Danijela

Not if you are writing a dotnet application. If you write a c++
application you can.

Chris
 
Can i then somhow convert my application to c++ so that i can make an
exe that works everywhere?
 
I doubt there are any vb.net to c++ convertors on the market, though i may
be wrong.

But to convert a vb.net application using the .net framework to a C++
application that uses the "normal" win32 libraries is a little more than
just converting the code. All the .net framework calls need replacing! I
would guess this would be a full ground up application re-write.

It's probably easier to load the framework!

Regards
Simon
 
Back
Top