Tip Bank

DevX - Software Development Resource

Be Cautious with Equality Tests on Literal Strings

It is perfectly legal to use of the equality operator to compare literal strings. However, the results might be surprising: bool eq;eq = “Mungojerrie” == “Rumpleteazer”; //not what you expect

DevX - Software Development Resource

A C Renaissance?

The rumors about the obsolescence of C were immature. In fact, some of the latest developments in the software world indicate that C is still a leading programming tool. Linux

DevX - Software Development Resource

Change the SQL Server Configuration Option

You can use sp_configure with RECONFIGURE to display or change server-level settings. However, some configuration options require a server stop and restart to update the currently running value. RECONFIGURE does

DevX - Software Development Resource

Visit Dennis Ritchie’s Homepage

The homepage of Dennis Ritchie, the creator of C and a coauthor of the legendary The C Programming Language, is probably the best virtual museum of the C programming language.

DevX - Software Development Resource

Catch Exceptions by Reference

Although you can catch an exception by value, as in the following example: catch( Exception except) // by value { //

DevX - Software Development Resource

Posting Two Forms Simultaneously

Question: I have an HTML page containing two forms. One form uploads an image file and needs to have an encryption type set while the other sends a plain set