Hello,
maybe the first plugin will simply be a plugin that can shell a command to a commandline app, capture the output, and display it nicely in the results window - seems like that would be useful for lots of things like this.
-mouser
With this simple Fbsl's GUI script, you'll grab the stdoutput of any executable that produces output
Dim %hEdit = Fbsl_control("edit", Me, "", 1, 0, 0, 320, 200, 0x50310084, 0)
Dim $buf = StrPipe("CMD /C DIR C:\*.txt /o/b/n" )
Fbsl_SetText( hEdit, buf )
Resize(Me, 0, 0, 324, 204 )
Center(Me): Show(me)
Begin Events
End Events
The result is a GUI winform sized to 320x200 with a TextBox containing the result of the following shelled command line :
CMD /C DIR C:\*.txt /o/b/n
As you've seen, it does not require any extra EXEcutable to do the job since StrPipe does the whole job for you
Any comments ?