Which is the default Data types in VBScript?
Answers were Sorted based on User's Feedback
Answer / guest
Variant is the default data type in VBScript, which can
store a value of any type
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / monal
The data type Variant no longer exists. It has been
replaced with the type Object. Object types must be
explicitly cast to other primitive data types.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / narayana
"Varient" is the default data type in vb script.
| Is This Answer Correct ? | 0 Yes | 0 No |
i have developed the below QTP script to count the no of items available in the web list "Select a product" in www.bankrate.com and also want to print what are the items??? can any one help me to rectify the below script??? SystemUtil.Run "iexplore.exe","www.bankrate.com" a=Browser("title:=Mortgage Rates Credit Cards Refinance Home CD Rates by Bankrate.com").page("title:=Mortgage Rates Credit Cards Refinance Home CD Rates by Bankrate.com").Weblist("name:=select").GetTOProperty("items count") msgbox a Dim List() ReDim List(a-1) For i = 1 To a List(i-1)=Browser("title:=Mortgage Rates Credit Cards Refinance Home CD Rates by Bankrate.com").page ("title:=Mortgage Rates Credit Cards Refinance Home CD Rates by Bankrate.com").Weblist("name:=select").GetItem(i) Print List(i-1) Next
How to access array data?
How do I check that the names in a weblist are correct e.g in flight application the names of item are Denver, paris,London, etc. How do I ensure the correct item is displayed from the list after doing item count ?
Hi, Anybody could tell me What is the script for Reverse of Given number. Ex:236--632. Thanks in Advance..
How will you get the exponent of the given number in vbscript?
write a vb script to display first 5 odd numbers from 1 to 100
Write a VB Script to count blank Lines in a notepad
Why to use option explicit in vb script?
w r p syed then output was deys and click eysd and click ysde and click sdey and click deys and click eysd............
What aspects of vbscript make it safe so that a web page using vbscript cannot destroy or corrupt information on a user's computer?
How are arrays declared in the vbscript language?
How will you release the memory acquired by an array variable in vbscript?