GUI/Dialogs for command line tools

For everything that's not in any way related to PureBasic. General chat etc...
kns
User
User
Posts: 54
Joined: Sat Apr 26, 2003 2:06 am

GUI/Dialogs for command line tools

Post by kns »

I'm searching for a utility that will provide the means to run existing command line tools, in this case data analysis, so that the output can be captured to an editable window or box. No doubt such an application already exists consequently any pointers would be most appreciated.

Thanks.
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post by thefool »

It wouldn't take much time writing such an utility using purebasic :)
#PB_Program_Open : Open the program to communicate with it or get information about it.
#PB_Program_Read : Read the programs console output. (stdout)
#PB_Program_Write : Write to the input of the program. (stdin)
#PB_Program_Error : Read the error output of the program. (stderr)
#PB_Program_Connect: Connect another programs output to this programs input.
rrpl
Enthusiast
Enthusiast
Posts: 121
Joined: Fri Apr 18, 2008 7:22 am
Location: Australia

Post by rrpl »

Too easy to write one in purebasic, and an excellent early project for any PB beginner. :) Go on give it a go, you'll surprise yourself. If you have any problems simply ask in the "coding questions" section.
V2
User
User
Posts: 53
Joined: Wed Oct 15, 2003 4:53 pm

Post by V2 »

Use a pipe?

e.g.:
C:\dir > file.txt
V2
Post Reply