can anybody tell vb script code for alphanumeric and special
character .which is used in qtp the name text field.
Answer / pravati
x="pravati.001@gmail@.com"
For i = 1 To len(x)
y=mid(x,i,1)
If isnumeric(y) Then
z=z&y
elseif asc(y)>=97 and asc(y)<=122 then
a=a&y
End If
Next
msgbox z
msgbox a
| Is This Answer Correct ? | 0 Yes | 0 No |
write script to open Gmail.com, and to write script for entering username and password and show whether the result as pass or fail
Does VB/Win make standalone .EXE files?
What is the difference between vb debugger and the script debugger?
How to open a file. What is the perpose of true and false mode there?
write a vb script to display the reverse of vbs
write a vb script to display factorial of a number using function
How to identify column in VSFlexgrid? My VSFlexgrid window is identified as 'Active X Control'
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?
How will you check that a variable is an array in vbscript?
i am having some basic knowledge in c and VB 6.0. i qtp i want to know how to write the codings. by recording it is generating lot of codings. for example i want to test the text box. senerio is text box should not accept alphabets if it accept alphabets we should return fail status if it get number we should return pass status. how to write coding in vb script please help me
Explain about the extension .hta?
Program to use input box and send even numbers into sheet1 and odd numbers into sheet2 and prime numbers into sheet3 using vbscript(QTP)?