Tip Bank

DevX - Software Development Resource

Equivalence Relationship in STL

Certain STL containers and algorithms require that you overload operator < for the class type they store as elements in order to sort and compare these elements. Note that STL

DevX - Software Development Resource

Convert Unix Dates to Readable Format

Unix systems keep dates in a single number format that represents the numberof seconds past January 1, 1970. January 1, 1970 is considered the EPOC and is the date that

DevX - Software Development Resource

ASP Number Formatting

Question: How do I format my numbers in the format ######, where a number of 123 would display as 000123? Answer: Concatenate a string of zeros to the left of

DevX - Software Development Resource

Viewing Resource in Public Folder

Question: I have set up conference rooms as mailboxes in Outlook 2000, which is working well but I have a few questions: Currently, we have to schedule the room as

DevX - Software Development Resource

Reading Hotmail in Outlook

Question: Can I use Outlook 98 to read my hotmail messages like I can with Outlook Express? Answer: Not like you do with Outlook Express, no. With Outlook 2000, you

DevX - Software Development Resource

New Line Character in ASP

Question: How do I define a new line character in ASP? Answer: In ASP (VBScript), use the constant vbCrLF to add line breaks in your string variables: strString = “Hello”