'3) write a program to read a value as user input and display its subdatatype
Dim x
x = InputBox("Enter a value","Input Reader")
WScript.Echo TypeName(x)
' the above statement will print the subdata type of x : String
Dim x
x = InputBox("Enter a value","Input Reader")
WScript.Echo TypeName(x)
' the above statement will print the subdata type of x : String
No comments:
Post a Comment