Explain what is loose binding? Why is it not a good practice to use it?
Answer / Kundan Bansal
Loose binding in VBScript refers to the ability to assign an object of one type to a variable declared as another type. It can cause unexpected behavior and potential errors, so it's generally recommended to avoid it.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between javascript and vbscript?
Which is the default Data types in VBScript?
Give examples where vb script can directly run on users system with windows as os?
Which operator is used to perform the comparison among 2 operands in the vbscript language?
What is difference between vbscript and vba?
I want to count the total no of links present in yahoo home page. The script like Set fileSysObject=createobject("Scripting.FileSystemObject") Set linksFileName=fileSysObject.opentextfile("D:\samplelinkfile.txt",2,true) Set linkDescObj=description.Create linkDescObj("micclass").value="Link" Set noOfLinks=browser("yahoo").Page("Yahoo!India").ChildObjects(linkDescObj) For i=0 to noOfLinks.count-1 linkName=noOfLinks(i).getROProperty("name") linksFileName.writeline(linkName) Next linksFileName.close Set fileSysObject=nothing But while running the script it is fail (the object not present in the object repository).How to overcome please tell me the detail steps...for QTP9.30
how to answer "TELL ME ABOUT UR SELF" as exp.person. whr to start and whr to stop. can anyone tel me
How to create MSAcess table foriegn key
How to insert snapshot during manual scripting in QTP?
Which keyword is used to declare a variable in the vbscript language?
how to automatically update the sql server2005 database records when insert in vb6?
There is a web Table where You will find Two Columns First Column consist of Check box and Second column consist of Test cases ID(Viz T1,T2,T3....Etc); If You select any Test case ID, respective Check boxes to be checked write a VBSCRIPT for this scenario?