write a vb script to display the code "vbscripting" alphabet
by alphabet(i e 1st v then b and up to g)
Answers were Sorted based on User's Feedback
Answer / mudaseer
vstr="vbscripting"
for i=1 to len(vstr)
msgbox mid(vstr,i,1)
next
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / sooraj
vstr="vbscripting"
for i=1 to len(vstr)
msgbox mid(vstr,i,1)
next
| Is This Answer Correct ? | 1 Yes | 0 No |
we executed QTP scripts in one browser(i.e IN)same scripts is working on another browsers or not (i.e mean netscap,m azol..like )
what is the standards used for writing the script in QTP
Explain about arrays in vb script?
How to assign a date value to a variable?
Why to add checkpoint in QTP What's the purpose of checkpoints & how to add it
Capture the Unique label changes on google home page for I am feeling lucky button and save those label changes to Notepad Note: Using QTP
Which is the default Data types in VBScript?
input values to accept 2 numbers & print the product, difference and sum using switch case
How to check the particular window is exist or not with out using check points
Hi Friends, I am facing some issues with If,else condition,i.e. i am working on some web page for ex:gmail page.now if i want to check if username is incorrect or already exist,i want to display error message in my test report,for this i am using a simple code first,i.e. If Browser("Gmail: Email from Google").Page("Gmail: Email from Google").WebEdit("Email").Set "Shekhar.g"= true Then Msgbox ("Username Does not Exist!") Else msgbox ("Welcome !") End If But still i am getting a syntax error If Browser("Gmail: Email from Google").Page("Gmail: Email from Google").WebEdit("Email").Set "shekhar.g"= true Then Msgbox ("Username Does not Exist!") Else msgbox ("Welcome !") End If I don't feel any thing wrong in this syntax but i don't understand why it shows such error,i am confused what went wrong,please help me out & do the favor,thanks a lot....
What is vbscript?
Which event is triggered when mouse focus comes out of an element in the vbscript language?