Jump to content

Print after open ?


Recommended Posts

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)
Link to comment
Share on other sites

$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 by ezzetabi
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...