Tip Bank

DevX - Software Development Resource

Tiling Made Easy

Use this method whenever you need a tiled background on your forms. All you need is an Image control with its Visible property set to False, and a graphic in

DevX - Software Development Resource

Updates, Uninstallations, and Product Codes

Install and uninstall issues are some of the most common sources of calls to help desks. The following is a tip on an implementation strategy for software updates using InstallShield

DevX - Software Development Resource

Auto Start the DNS Service in Linux

When the DNS service has stopped, use this code to start it automatically. #! /bin/bashdns_pid=`ps -ax|grep “named -u named” |grep -v grep |awk ‘{print $2}’`if test “x$dns_pid” = “x” ;

DevX - Software Development Resource

Always Make a Local Copy of an Object

Reading from the object variable is always slower than reading from the local variable. So, if you are reading from the object variable frequently, then save it in a local

DevX - Software Development Resource

A better way to query for a single node

In the XmlNode class, that is the class that provides node functionality in an XMLDOM representation of an XML document, the SelectNodes (and the ancillary SelectSingleNode) method exploits the XPath