bobheart Posted June 25, 2004 Posted June 25, 2004 How would I make this print out after it opens in notepad ? $searchHandle = FileFindFirstFile( @Scriptdir & "\data.ini" ) If $searchHandle = -1 Then MsgBox(4096,"Error","File not found...quitting.") Exit EndIf $filename = FileFindNextFile($searchHandle) Run('notepad "' & @ScriptDir & '\' & $filename & '"',@WindowsDir)
ezzetabi Posted June 25, 2004 Posted June 25, 2004 (edited) $searchHandle = FileFindFirstFile( @Scriptdir & "\data.ini" ) If $searchHandle = -1 Then MsgBox(4096,"Error","File not found...quitting.") Exit EndIf $filename = FileFindNextFile($searchHandle) Run('notepad /p "' & @ScriptDir & '\' & $filename & '"',@WindowsDir) Just use the /p (or /pt if you want select the printer) tag. Edited June 25, 2004 by ezzetabi
bobheart Posted June 25, 2004 Author Posted June 25, 2004 Thank you . I was going to make a bat file if I couldn't do it this way .. Thanks again .
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