write a vb script to find simple interest using functions
Answer / mudaseer
sub si(p,t,r)
dim si
si=p*t*r/100
msgbox si
end sub
call si(10,10,1)
| Is This Answer Correct ? | 23 Yes | 7 No |
What are the differences between Visual Basic, VBA and VBScript? When would it be appropriate to use one as opposed to another?
i have to open a notepad having no. of words in dat file by recording in qtp and then find a particular word and display true or false
Write a Fucntion to close all Opened browser expect desired one?
. Program for sorting of numbers in vb script?
Explain the scope of the variables using dim, public, and private keywords respectively.
write a script to count no drives in file systems in qtp?
what do you mean .ota mobile format
regular expression that will recognize a browser as long as its name property starts with mybrowser
Description.Create
Hello All, In QTP 9.2 for Mozilla Firefox, there is webelement in my application, I tried to click on that using decsriptive programming, but it does not work. and for this i tried this code too: Set obj = CreateObject ("Mercury.DeviceReplay") absx = Browser("").Page("").WebElement(".").GetROProperty ("abs_x") absy = Browser("").Page("").WebElement(".").GetROProperty ("abs_y") obj.MouseMove absx, absy obj.MouseClick absx, absy, 0 But it is not clicked. Can anyone help me out for this problem. Thnx in Advance
How to Import data from a file (file is on the desktop) to the data table
write a vb script to generate hello 5 times using do until loop