Here in my automation tool, i am retreiving some values and
i need to store this values in the excel. How can i achieve
this?. We are using VBA as scripting language. please let
me know if you require any further inputs.
Answer / suryanarayan mohanty
Set fs = CreateObject("Excel.Application")
If Not (fs.fileexists(FileName)) Then
Set fd = fs.createFile(FileName)
End If
Open FileName For Append As 1
Write #1, xyz, dwe, qws
Close #1
End If
| Is This Answer Correct ? | 1 Yes | 1 No |
What are string functions in vbscript?
Hi, Anybody could tell me What is the script for Reverse of Given number. Ex:236--632. Thanks in Advance..
Which respective symbols are used to separate a line and to break the lengthy statement into multiple statements in the vbscript language?
I am working on QTP, got struck in one place.. In my application depending upon configuration WebEdit count is increasing/ decreasing.. how to get these webedits..
What is the purpose of drive object of scripting.filesystemobject class in vbscript?
What are class properties?
Which function allows you to instantiate an object given its programmatic identifier or progid?
write a qtp script to count the number of minimized windows
how to write a vb script in QTP for yahoo registration form, i want to check the performance also like performance test, stress, load test like that.
What are the different types of loops available in the vbscript language?
What are the valid scopes of a variable in vbscript?
a function that takes an integer array as an argument and returns the largest value in the array. Use the function in a program