How to open notepad without recording and without using system.util.run command?

Showing Answers 1 - 12 of 12 Answers

sushma

  • Oct 27th, 2006
 

hi by using invoke function

  Was this answer useful?  Yes

Guest

  • Oct 27th, 2006
 

using discriptive program... u can open the notepad without using recording  && system uti.. coding

try like

this example for Browser..

window (titel:"window name").window (titel:"window name). edit (Logical name: " set name").

  Was this answer useful?  Yes

sumitha

  • Oct 27th, 2006
 

using discriptive program... u can open the notepad without using recording  && system uti.. coding

try like

this example for Browser..

window (titel:"window name").window (titel:"window name). edit (Logical name: " set name").

  Was this answer useful?  Yes

murali

  • Oct 28th, 2006
 

By specifying path in record and run settings dialog box.

In windows tab select record and run only on following windows applications.

Specify the notepad.exe path

thanks & Regards

  Was this answer useful?  Yes

sakthisankar

  • Nov 1st, 2006
 

InvokeApplication "c:windowsnotepad.exe"

  Was this answer useful?  Yes

Radheesh

  • Nov 2nd, 2006
 

This is the command to open notepad without recording and and without using system.util.run

set a= CreateObject("WScript.Shell")
         a.Run "notepad"
         a.AppActivate "notepad"

  Was this answer useful?  Yes

Bharathi

  • Dec 22nd, 2006
 

Write a VBS, to create a instance for the Shell object we can call Notepad

  Was this answer useful?  Yes

You can use the filesystem object

set fso=createobject("scripting.filesystemobject")

set myfile=fso.opentextfile("c:raghu.txt",mode,true)

mode=1 if we want to open in read mode

mode=2 if we want to open in write mode

mode=8 if we want to open in append mode

true is used if we want to create the text file if it doesn't exist

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions