July 1, 2003

Book Excerpt: Active Directory, 2nd Edition

ctive Directory is a common repository for information about objects that reside on the network, such as users and groups, computers and printers, and applications and files. The default Active Directory schema supports numerous attributes for each object class and can be used to store a variety of information. Access

Timeline: Java in Retrospect

hen we first set out to document the full history of Java’s emergence and development, we knew we’d have an interesting and enjoyable time of it. From its conception in 1991 by the members of a key R&D team at Sun Microsystems called The Green Project to the announcement earlier

Use a Regular Expression to Initialize a String Array (C#)

Want to declare and initialize a string array, but tired of typing all those quotes and commas? Try this method instead. First, add the Imports System.Text.RegularExpressions line to the top of your code. Then, where you want to declare the string array, use code such as this: String[] s =

Use a Regular Expression to Initialize a String Array (VB.NET)

Want to declare and initialize a string array, but tired of typing all those quotes and commas? Try this method instead. First, add the Imports System.Text.RegularExpressions line to the top of your code. Then, where you want to declare the string array, use code such as this: Dim s As