Description: Visual C++ in Visual Studio .NET 2003
The following are examples from the article in MSDN magazine:
AppDomains
----------
This illustrates the problem with unmanaged code calling into managed code
on v1.0 of the framework and the solution in v1.1
ResourceExamples
----------------
This solution illustrates how to add non-form based resources to a project,
how to add multiple embedded resources, and how to link a compiled resource.
Verifiable
----------
Illustrates how to make a library assembly verifiable. To run this you have
to build the MSDN library example SetILOnly.
WindowsApp
----------
Illustrates the steps to tidy up the Forms code created by the Project
wizard.
To Search:
File list (Check if you may need any files):
VisualC++NET\AppDomains\makefile
............\..........\Managed.cpp
............\..........\Native.cpp
............\AppDomains
............\ReadMe.txt
............\..sourceExample\app.ico
............\...............\app.rc
............\...............\AssemblyInfo.cpp
............\...............\LinkedResource.resx
............\...............\OtherResources.resx
............\...............\ReadMe.txt
............\...............\resource.h
............\...............\ResourceExample.cpp
............\...............\ResourceExample.sln
............\...............\ResourceExample.vcproj
............\...............\stdafx.cpp
............\...............\stdafx.h
............\...............\StringData.resx
............\ResourceExample
............\Verifiable\app.ico
............\..........\app.rc
............\..........\ReadMe.txt
............\..........\resource.h
............\..........\Stdafx.cpp
............\..........\Stdafx.h
............\..........\Verifiable.cpp
............\..........\Verifiable.h
............\..........\Verifiable.sln
............\..........\Verifiable.vcproj
............\..........\verify.cmd
............\Verifiable
............\WindowsApp\app.ico
............\..........\app.rc
............\..........\AssemblyInfo.cpp
............\..........\MainForm.cpp
............\..........\MainForm.h
............\..........\MainForm.resX
............\..........\ReadMe.txt
............\..........\resource.h
............\..........\stdafx.cpp
............\..........\stdafx.h
............\..........\WindowsApp.cpp
............\..........\WindowsApp.sln
............\..........\WindowsApp.vcproj
............\WindowsApp
VisualC++NET