devxlogo

Use Brackets to Keep VID 6 Happy

When you use the Scripting Object Model (SOM) in Visual InterDev 6, keep in mind that the script library is biased towards JavaScript. Your perfectly valid VBScript may produce strange errors when interpreted by the SOM. For instance, this line of VBScript:

 employeeID=Listbox3.getValue

might produce bizarre text in the browser, such as:

 <=function _LB_getValue(nIndex) { if (typeof(nIndex) == 'undefined') nIndex = this.selectedIndex; if (!isNaN(parseInt(nIndex)) && nIndex >= 0 && nIndex < this.getCount()) return this._options[nIndex].value; return ''; } 

The SOM script library is actually returning its own code instead of the value that you requested. The fix is simple--just add brackets to the VBScript method:

 employeeID=Listbox3.getValue()

Whenever your code produces unexpected results from the script library, adding a couple of brackets could be the fastest fix.

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Seven Service Boundary Mistakes That Create Technical Debt

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.