xManh Posted September 25, 2006 Posted September 25, 2006 How to open a file with specified program? for example, I create a .txt file, then I run notepad.exe Now how to tell notepad to open my .txt file? Thanks!
AceLoc Posted September 25, 2006 Posted September 25, 2006 you mean.. after you runned notepad how to open the .txt file you made? [quote name='AceLoc']I gots new sunglasses there cool.[/quote]
xManh Posted September 25, 2006 Author Posted September 25, 2006 Yes, or just tell Notepad to open my file at starting up I want a notepad window to appear, and it's editing my file then
CWorks Posted September 25, 2006 Posted September 25, 2006 Run("notepad " & @ScriptDir & "\myfile.txt")
The Kandie Man Posted September 25, 2006 Posted September 25, 2006 Try this: Run(@ComSpec & " /c " & '@start notepad.exe "C:\thisismytextfile.txt"', "", @SW_HIDE) "So man has sown the wind and reaped the world. Perhaps in the next few hours there will no remembrance of the past and no hope for the future that might have been." & _"All the works of man will be consumed in the great fire after which he was created." & _"And if there is a future for man, insensitive as he is, proud and defiant in his pursuit of power, let him resolve to live it lovingly, for he knows well how to do so." & _"Then he may say once more, 'Truly the light is sweet, and what a pleasant thing it is for the eyes to see the sun.'" - The Day the Earth Caught Fire
AceLoc Posted September 25, 2006 Posted September 25, 2006 (edited) ya or this:$file = InputBox("File:", "File Location:", "", "", 100, 10) $a = "Notepad.exe" $b = "Untitled" $c = "Edit1" $d = "Open" ;---------------------------- Run($a) WinWaitActive($B) ControlSend($b, "", $c, "^o") WinWaitActive($d) ControlSend($d, "", $c, $file) ControlSend($d, "", $c, "{ENTER}") Sleep(500) MsgBox(0, "Test", "Worked right?")EDIT: Im Bored *-) Edited September 25, 2006 by aceloc [quote name='AceLoc']I gots new sunglasses there cool.[/quote]
xManh Posted September 25, 2006 Author Posted September 25, 2006 It works very well Thanks all One more question: can I use this manual with programs other than notepad?
AceLoc Posted September 25, 2006 Posted September 25, 2006 (edited) ya.. but sure needs abit edit just tell us.. what you want "Exactly" no -examples. then we could make it i guess. Edited September 25, 2006 by aceloc [quote name='AceLoc']I gots new sunglasses there cool.[/quote]
Valuater Posted September 25, 2006 Posted September 25, 2006 For a "registered" file association... txt, pdf, .doc etc... use this RunWait(@COMSPEC & " /c Start myfile.msi") 8)
xcal Posted September 25, 2006 Posted September 25, 2006 This will open whatever file with it's associated program: $file = 'c:\a_file.txt' If FileExists($file) Then Run(@ComSpec & ' /c start "" "' & $file & '"', '', @SW_HIDE) Else MsgBox(48, 'Error', 'File is missing.') EndIf How To Ask Questions The Smart Way
xManh Posted September 25, 2006 Author Posted September 25, 2006 Thanks, I will post the example when I meet it
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now