New to VB .NET, can't compile as Win32

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

Guest

I'm an occasional VB user who has just installed VB .NET 2003 (previously
using VB6). I migrated a VB6 project over, tweaked it, and compiled it. It
runs fine on the machine I compiled it on, but will not initialize on other
systems.

After doing some digging I believe the problem is that I need to compile for
Win32 platform instead of .NET platform. But that option is not available in
the drop-down in Configuration Manager; .NET is the only thing in the list.

What am I missing? How do I enable the option to compile my app for Win32
without needing the .NET Framework installed on the user machine?
 
Dwasifar,

With Visual.Studio Net you can only make with C++ direct Win32 programs.

For the rest you can make with VS Net as the name already says only Net
programs.

(That is because you need for .Net programs the OS extention also named the
framework).

I hope this helps,

Cor
 
Well, crap. The packaging's a little misleading then, telling you you can
make Windows applications with it.

So a VB program will still compile only for .NET Framework even if you also
have C++ installed in Visual Studio, right?
 
dwasifar wrote:
(snip)
What am I missing? How do I enable the option to compile my app for
Win32 without needing the .NET Framework installed on the user
machine?


yep.... it's a bummer!

If you don't want to force a 20MB upgrade on your clients then have a look
at thinstall.
 
What is thinstall?

Neil Wallace said:
dwasifar wrote:
(snip)


yep.... it's a bummer!

If you don't want to force a 20MB upgrade on your clients then have a look
at thinstall.
 
dwasifar said:
Well, crap. The packaging's a little misleading then, telling you you can
make Windows applications with it.

The .NET Framework is simply a huge library and execution engine, but the
applications created using VB.NET will still run on Windows if the .NET
Framework is installed.
So a VB program will still compile only for .NET Framework even if you
also
have C++ installed in Visual Studio, right?

Yes.
 

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

Back
Top