New VB Script Interview Questions :: ALLInterview.com http://www.allinterview.com New VB Script Interview Questions en-us how to find number of characters(letter a) in the sentence Rain Rain http://www.allinterview.com/showanswers/178109.html Dim Str, p,temp,i,l i=0 Str= inputbox("Enter the string","User input 1") p= inputbox("Enter the character you want to search in specified string", "User Input 2") l= Len(str) Do while l>0 temp= How to Convert Hex color code to color name in VB Script? http://www.allinterview.com/showanswers/177721.html how to automatically update the sql server2005 database records when http://www.allinterview.com/showanswers/177476.html VISUAL BASIC QUESTIONS Does VB/Win make standalone .EXE files? W http://www.allinterview.com/showanswers/176762.html VISUAL BASIC QUESTIONS Does VB/Win make standalone .EXE files? W http://www.allinterview.com/showanswers/176760.html how to store charecters of HARIBABU Using arrays http://www.allinterview.com/showanswers/176591.html dim a() cnt=0 str="haribabu" for i=1 to len(str) s=mid(str,i,1) redim preserve a(cnt) a(cnt)=s cnt=cnt+1 for j=0 to ubound(a)-1 msgbox a(j) next next how to find the textfile in the folder and copy file from one folder http://www.allinterview.com/showanswers/176590.html Function Replacinfile(SourceFile,Destination File) Set Fso=CreateObject("Scripting .FilesystemObject") If Fso.Exisit(SourceFile) Then Fso.CopyFile(SourceFile,Destination File) End If End Function Call Replacinfile(Sourc Filepath,Desti How to return only alpha bate string from an string str = &quot;bibhu http://www.allinterview.com/showanswers/176487.html str ="bibhu@#$%&das&*)(SUndar" L=len(str) For i=1 to l x=left((right(str,l-i+1)),1) If ASC(ucase(x))>=65 and ASC(ucase(x))<=90 then Print x End If Next Difference between Do while loop and while wend loop http://www.allinterview.com/showanswers/176396.html How to select a value from a list box by using Selenium web-driver? http://www.allinterview.com/showanswers/176304.html We need to get all options using String[] options = Selenium.getSelectOptions and use selenium.select(options[2]) which will select second option Difference between Function and Sub routine? http://www.allinterview.com/showanswers/176297.html I want to run QTP script on Linux server is it possible to do this b http://www.allinterview.com/showanswers/175780.html write a function to read the items from combobox of Flight reservati http://www.allinterview.com/showanswers/175287.html I have a webtable and many objects are embedded in side.(like button http://www.allinterview.com/showanswers/174398.html through childobjects str=Browser().page().childobjects msgbox str.count 1)How to test whether items in a weblist are in alphabetical order o http://www.allinterview.com/showanswers/174397.html For i=0 to Ubound(arrCtry) If arrCtry(i)<>"--Choose One--" Then objArray.Add(arrCtry(i)) End If Next objArray.Sort() objArray.Insert 0,"--Choose One--" For j=0 to Ubound(arrCtry) strOuput=strOuput+objArray(j