Jump to content

Sending KIX output to windows


Recommended Posts

Hi!

I'm using KIX to display a very simple hardware list using this Autoit script:

CODE
#include <Constants.au3>

$kix = Run(@ComSpec & " /c kix32 hardware.kix", "", @SW_HIDE, $STDERR_CHILD + $STDOUT_CHILD)

While 1

$line = StdoutRead($kix)

If @error Then ExitLoop

MsgBox(0, "STDOUT read:", $line)

Wend

While 1

$line = StderrRead($kix)

If @error Then ExitLoop

MsgBox(0, "STDERR read:", $line)

Wend

MsgBox(0, "Debug", "Exiting...")

However i cant display Kix's output to the message box. :)

Any ideias?

You can download my Kix script in:

http://pwp.netcabo.pt/nelson.neves/hardware.zip

Thanks!

Edited by SoulBlade
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...