How many data types are supported in Vbscript?
Answer Posted / abbas khan
There is only one Data Type in vbScript , which is able to
store any kind values such as integer, string, double, date
etc. (We term it as Varient).
To know what kind of value a variable contains,
use "TypeName" keyword.
Example :
Var1 = "abcde"
Msgbox TypeName(Var1) 'OutPut will be string
Var2 = "1234"
Msgbox TypeName(Var2) 'OutPut will be integer
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
By default in vbscript the arguments passed to functions and subroutines are by reference or by value?
How to write a VBscript for web page performance test i need a code send if any knows the code If any knows VBScript book plz send to me the link to my mail plz
Develop a parameterized action that accomplishes the following a. Launch a browser of users choice ( example : IE, chrome etc) b. Open up a search engine (Google, Bing etc) c. Perform a search d. Click a particular link depending on the user’s choice ( 1st , 2nd or third link)
Explain the support of asp for vb script functionality?
How to throw an error in vbscript?
Mention how to access array data?
What if you do not specify anything when you call a procedure?
Explain about filter expression?
How should i Create Email invite with server-side Coding?
Hi anyone Can Send Solution to the Question wt m posting now Prepare Script for the Bellow Scenario? Login to Gmail Page Open Inbox check Mails save them in a Folder
How will you get the natural logarithm of the given number in vbscript?
after medical test,when will be the police verification
Which constant is used for print and display functions and works as same as pressing enter key?
give me any information abou vb script books learn quckly
hi all, i had a question, that how to find out hiding a coloumn in a table i had a table having the following column names NAME DESCRIPTION CREATED TIME CREATED USER if i right clicked on a NAME column it will displays a menu having the same column names in a list like NAME DESCRIPTION CREATED TIME CREATED USER with check boxes.if i unched any check box, that column name should not be appear in the main table column names could anyone please solve this problem?