.NET
visioviz.txt
Associated article: Visualizing Network Resources Using Visio
Tags: .NET
Published source code accompanying the article by Chris Trueman in which he examines Visio, a generic diagram construction tool that just happens to include a powerful visualization engine. Chris uses that engine to write a C++ tool that generates diagrams to represent all the available resources on a Windows network. Also see VISIOVIZ.ZIP.
Visualizing Network Resources Using Visio
by Chris Trueman
Example 1:
VAORC VNetInfo::Run(LPVAOV2LSTRUCT pV2L)
{
CNetworkResourceCollector nrCollector(this);
BOOL rc = FALSE;
rc = nrCollector.Run();
ASSERT(rc);
if(!(rc))
{
AfxMessageBox(IDE_GENERAL_RESOURCE_COLLECTION, MB_OK | MB_ICONSTOP);
}
return(VAORC_...


