I've been searching the net for days now to no avail!





please help me!!!
here is the scenario, i want send keys to send in part of the text and finish loading the text from a textfile located in my c dir
Dim objFileSystem, objInputFile
Set objFileSystem = CreateObject("Scripting.fileSystemObject")
Set objInputFile = objFileSystem.OpenTextFile("c:\vince.txt", 1)
' read everything in an array
inputData = objInputFile.ReadAll
objInputFile.Close
Set oShell = CreateObject("WScript.Shell")
oShell.run"cmd"
WScript.Sleep 500
oShell.SendKeys("format",+"inputdata")
oShell.SendKeys("{Enter}")
WScript.Sleep 1000
any help would be greatly appreciated,,