Jump to content
Xtreme .Net Talk

Recommended Posts

Posted
What exactly is the difference if you make a MFC Application or a Windows Forms Application. I mean they both give you a window / Dialog ??
  • *Experts*
Posted
MFC and Window Forms are two different technologies. Both for working with user interface but different. Windows Forms projects are projects for .NET Framework, because Windows Forms is part of it.
Posted

You mean that MFC Application is not part of .NET ?

 

Is MFC Application only added to .NET to adapt MFC users to use .NET or what ?

  • Administrators
Posted

MFC Applications are not .Net applications and do not use the .Net framework.

 

However a .Net application can link to the MFC libraries - however this means you are potentially coding against two class libraries with overlapping areas of functionality.

Posting Guidelines FAQ Post Formatting

 

Intellectuals solve problems; geniuses prevent them.

-- Albert Einstein

Posted
So If I make a class library in C++ (I suppose it is ANSI-C), then I might get some problems in making a Windows Form that use managed C++, right ?
  • *Experts*
Posted
So If I make a class library in C++ (I suppose it is ANSI-C), then I might get some problems in making a Windows Form that use managed C++, right ?

Why would you get trouble? You didnt say what you would do to combine them or anything like that, without that I dont know what to say :).

Posted
If I make a dll making the class library in C++ (I guess this is written in ANSI C++), and the make the GUI stuff Application as a Windows Form Application where I make a dllImport. Would there be any problem in that ?
Posted

C# and C++ are totally different languages. C++.NET is more like the original C++ in syntax and concept - you #include files and there are pointers, references and all of that stuff.

 

In C#, it is more like Java. There are no pointers, files do not need to be #included and it is really more like VB.NET with Java syntax.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...