Jump to content

Recommended Posts

Posted

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)
Posted (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 by ezzetabi
Posted

Thank you . I was going to make a bat file if I couldn't do it this way ..

Thanks again .

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
  • Recently Browsing   0 members

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