Actually I want to display the messages shown in cmd prompt like, if i do:
Ping google.com -t
The following message will be displayed in the cmd prompt:
Reply from 74.125.235.17: bytes=32 time=133ms TTL=51
Reply from 74.125.235.17: bytes=32 time=130ms TTL=51
Reply from 74.125.235.17: bytes=32 time=130ms TTL=51
Reply from 74.125.235.17: bytes=32 time=130ms TTL=51
Ping statistics for 74.125.235.17:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 130ms, Maximum = 133ms, Average = 130ms
I want to display the exact information into the list box of my program instantly when it is displayed in the command prompt not after whole process is completed. How can i do so? Any help? I am using C#/vb.net .
As in the ping google.com -t, I want to display the each reply message instantly in the list box.