Are Ports on Your Computers Listening?
See how you can determine which ports on a computer have an application listening.
See how you can determine which ports on a computer have an application listening.
add this functionality to your applications to determine if machines on the network are there!
Discover the basic code to install, uninstall, start, stop, pause, continue, and change logon user for Windows Services remotely.
The conversion between common native types and the equivalent .NET Framework type is a common programming activity for interoperability development in C++. Visual C++ Orcas introduces a light-weight, template-based library for performing this conversion. This article will look at both the use of this library and how it can be extended to add new conversions.
Windows Vista allows you to define, secure, and use custom namespaces to prevent malicious applications from denying access to kernel object functionality.
What does .NET's LINQ (Language INtegrated Query) have to offer the VB developer? Read on to find out.
Native code continues to be the most powerful and flexible mechanism for producing applications that work closely with the host OS. For native development in Vista, get to know the new Windows Event Log features.
Investigate some basic logging scenarios, explain and define some of the required terminology, and take the first steps to more efficient logging.
When using .NET and C#, IP Address information is stored in the System.Net.IPAddress class, which provides no method for comparing IP addresses except for equality. Learn to circumvent that problem.
Generics, a new addition in version 2.0 of the .NET Framework, offer a combination of type safety, performance, and generality in the defined type. Find out why generics are valuable and what they can add to your applications.
What are delegates, and what value do they provide? Mark Strawmyer explains why you may already be familiar with them and then digs into some examples of how you can use them.
Learn about using application configuration files in Microsoft .NET and the concept of application configuration files and the native support the Microsoft .NET Framework provides.
Get a sneak peek at some of the cool and interesting features in the latest Longhorn build from Microsoft.
Basic math operators—such as plus, minus, and modulus—can get you only so far. It is only a matter of time before you find that you need more robust math routines.
Discover how to send e-mail from within your .NET applications using the System.Web.Mail namespace.
The libraries in the .NET Framework cover almost every task you are likely to tackle when developing for .NET. Learn how to use them from this chapter from the Visual C++ .NET 2003 Kick Start.
Learn about the important classes in the Diagnostics Namespace.
We all have families to feed and bills to pay, so we must consider the financial aspects of writing software. To ensure compensation, many developers incorporate licensing into their products. Kenn shows how to add licensing to your .NET applications.
Retrieving objects from the registry using the .NET RegistryKey Class. (Uses C#)
This example presents the FileInfo class, which allows you to get information about a file.
The .NET Framework takes a much different approach to the Environment than Windows. There is a class called Environment, which is part of the System namespace.
Using the buffers instead of array copies. Understand the difference.