please clarify the question .................
i know how to open the notepad file ?
but i don't know how to enter the data into opened notepad ?
Ex: set a=createobject("wscript.shell")
a.run "Notepad.exe"
please give the replay.
my mail id is raju.ippali@gmial.com, 9823257761
Answers were Sorted based on User's Feedback
Answer / sri satya
Dim a,b
Set a= CreateObject("Scripting.FileSystemObject")
Set b= a.CreateTextFile("c:\Test.txt")
b.Writeline("Hi Welcome To QTP")
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / vibhav srivastav
I thik This Code will Work
set a=createobject("wscript.shell")
a.run "Notepad.exe"
Set Obj = Window("regexpwndtitle:= Notepad").WinEditor
("nativeclass:= Edit")
Obj.Click
a.Sendkeys "I Love QTP"
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / kamal
set fso=createobject("scripting.filesystmeobject")
set fptr=opentextfile("c:\sample.txt",2,true)
fptr.writeline("this is sample program")
set fptr=nothing
in this 2 for write mode and true for if file doesn't
exist, it can create a new file sample.txt, if we give
false, it can open the file sample.txt which is already
exists.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / m.s.patil
Dim fso,filepath
Set fso =CreateObject("Scripting.FileSystemObject")
Set filePath =fso.CreateTextFile("C:\mpatil3.txt")
filePath.WriteLine ("This is sample code")
filepath.Close
Set fso =Nothing
I have tested this and it works fine.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / arun
sline="Hello"
Set fso = CreateObject("Scripting.FileSystemObject")
Set CreateFile = fso.CreateTextFile("c:\x1.txt",True)
CreateFile.close
Set OpenFile = fso.OpenTextFile("c:\x1.txt",8,True)
OpenFile.Writeline sline
OpenFile.Close
| Is This Answer Correct ? | 0 Yes | 1 No |
How Can I find the least value in a bunch of variables using qtp.. E.g.:- A = 210, B = 212, C = 60, D = 111 I don’t want to write bunch of lines for this…. Is there a way to get the result in one line…..
How Does Run time data (Parameterization) is handled in QTP?
How to retrieve the object properties at runtime without the usage of GetROProperty?
How to identify whether a web page exists or not without using Browser(" ").Page(" ").Exist?
what testing activities u may want to automate in a project?
What is the use of sendkeys and what are send keys
WHAT IS PARAMITARIZATION?
What are the differences between table and db checkpoints?
Which is the best QTP training institute in Delhi/NCR region and what is the approximate fee for QTP course (Basics and Advanced)
How to Run a Test using QTP?
How to export data present in Datatable to an ".xls" file?
write a qtp code to count the number of child objects in login page and highlight it