I've got a Console application that reads from stdin via Input, i.e.: Dim IVRD As String While HeadersComplete = False IVRD = IVRD + Input if stdin.eof = true then Quit(0) ParseResults IVRD IVRD = "" App.DoEvents wend
In a Windows environment, the CPU usage is normal...however in a Linux Environment (where i've gotta use it) the CPU usage while being blocked via Input the CPU usage goes crazy! Any thoughts? I've also made an attempt to use TCPSockets to access the DataAvailable events (via stdin/stdout) and maybe im ignorant or a newbe but can't figure out how to get a subclass to connect to the stdio subsystem. In the docs: Dim Outgoing as TCPSocket = StdOut Dim Incoming as TCPSocket = StdIn But what I really need to do is create a subclass in the IDE, i.e. TCPSocket1, fill it with code and do something similar to the following: Dim Outgoing as TCPSocket1 = StdOut Dim Incoming as TCPSocket1 = StdIn For the life of me, it wont compile or run. TCPSocket1 has a super of TCPSocket. Thank You in advance for any input anyone can provide. _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
