Creating shortcuts using VB6

In your VB Project, to create a shortcut you need to add a reference to the Windows Script Host Object Model - if this is not available find the file WSHOM.OCX. [Read More]
Tags: vb

JavaScript Trim Method

There are number of ways you can trim strings using javascript. The best way is to prototype the string object, adding a trim method, so you can perform the action by merely calling “string.trim()”. [Read More]
Tags: javascript

JavaScript Error Handling

Error trapping with JavaScript only works for newer generation browsers. However, older browser generally ignore window.onerror code, so it is worth putting in. There are two ways to do this: [Read More]
Tags: javascript