How can I develop a small app with vs.net 2002 ...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I develop a small app with vs.net 2002 , and run it in other computers without install .net environment

If it can, how to do that

thanks very much.
 
June,
How can I develop a small app with vs.net 2002 , and run it in other
computers without install .net environment?
If it can, how to do that?

Use unmanaged C++, then, using the Win32 API, ATL, etc. or whatever
unmanaged libraries and frameworks suit you.
 
Does that mean I need to use VC++6.0 or BC or something else, but not VS.NET

Thanks verymuch
 
No, when you create the project just select the one of the unmanaged template in the new project dialog. For example, "Win32 Console Project" and "Win32 Project" will both setup the project as unmanaged

You can also change the project settings the remove the the /clr option from the compilier settings.
 
Does said:
Does that mean I need to use VC++6.0 or BC or something else, but not VS.NET?

Thanks verymuch

Remember, it depends on what you installed when you installed .Net. If
you only had a learners kit, you might only have C# and NOT C++

/steveA
 
Back
Top