How to make an exe file that works everywhere?

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
 
H

Herfried K. Wagner [MVP]

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

danijela

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
 
D

danijela

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

Danijela
 
G

Guest

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
 
D

danijela

Can i then somhow convert my application to c++ so that i can make an
exe that works everywhere?
 
S

Simon Verona

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top