Click here to Skip to main content
15,917,731 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Sorting Collection with 200000+ Items Pin
GuyThiebaut6-Sep-07 23:05
professionalGuyThiebaut6-Sep-07 23:05 
GeneralRe: Sorting Collection with 200000+ Items Pin
MadmanWoo10-Sep-07 15:49
MadmanWoo10-Sep-07 15:49 
Questionpls help its urgent [modified] Pin
shyne76-Sep-07 20:39
shyne76-Sep-07 20:39 
AnswerRe: pls help its urgent Pin
Tom Deketelaere6-Sep-07 22:18
professionalTom Deketelaere6-Sep-07 22:18 
Questionits urgent Pin
Lucky Sheikh6-Sep-07 20:00
Lucky Sheikh6-Sep-07 20:00 
AnswerRe: its urgent Pin
Colin Angus Mackay7-Sep-07 0:02
Colin Angus Mackay7-Sep-07 0:02 
AnswerRe: its urgent Pin
Thomas Stockwell7-Sep-07 5:32
professionalThomas Stockwell7-Sep-07 5:32 
QuestionConsole Output Pin
danasegaranea6-Sep-07 19:55
danasegaranea6-Sep-07 19:55 
Hi all,
I am using this code to redirect the console output continiuly
[code]
Dim clsProcess As New System.Diagnostics.Process()
clsProcess.StartInfo.UseShellExecute = False
clsProcess.StartInfo.RedirectStandardOutput = True
clsProcess.StartInfo.FileName = "ping"
clsProcess.StartInfo.Arguments = "127.0.0.1 -t"
clsProcess.Start()
While (clsProcess.HasExited = False)
Dim sLine As String = clsProcess.StandardOutput.ReadLine()
If (Not String.IsNullOrEmpty(sLine)) Then
Me.TextBox1.Text &= sLine & vbCrLf
End If
Dim sErrorLine As String = clsProcess.StandardError.ReadLine()
If (Not String.IsNullOrEmpty(sErrorLine)) Then
Me.TextBox1.Text &= sErrorLine & vbCrLf
End If
Application.DoEvents()
End While
[code]

This Code Not working Propertly.It some time omits the error output.
How can I solve this issue

Or Is there any other method avaliable to redirect the console output in realtime and close the window when the console closes

Thanks in Advance
Dana
AnswerRe: Console Output Pin
Dave Kreskowiak7-Sep-07 5:29
mveDave Kreskowiak7-Sep-07 5:29 
QuestionQuestion on Interop.Office.Word Pin
Trupti Mehta6-Sep-07 19:00
Trupti Mehta6-Sep-07 19:00 
AnswerRe: Question on Interop.Office.Word Pin
eyes20076-Sep-07 19:47
eyes20076-Sep-07 19:47 
GeneralRe: Question on Interop.Office.Word Pin
Trupti Mehta6-Sep-07 20:37
Trupti Mehta6-Sep-07 20:37 
GeneralRe: Question on Interop.Office.Word Pin
eyes20076-Sep-07 20:48
eyes20076-Sep-07 20:48 
GeneralRe: Question on Interop.Office.Word Pin
Trupti Mehta6-Sep-07 23:10
Trupti Mehta6-Sep-07 23:10 
QuestionHow to get active control name - - - - immediate Pin
RaveRare6-Sep-07 18:53
RaveRare6-Sep-07 18:53 
AnswerRe: How to get active control name - - - - immediate Pin
eyes20076-Sep-07 19:56
eyes20076-Sep-07 19:56 
AnswerRe: How to get active control name - - - - immediate Pin
The ANZAC6-Sep-07 20:32
The ANZAC6-Sep-07 20:32 
QuestionWhy is that property AutoCompleteCustomSource of a TextBox wont work when you set its property as multiline?? Pin
vbDigger'z6-Sep-07 18:45
vbDigger'z6-Sep-07 18:45 
AnswerRe: Why is that property AutoCompleteCustomSource of a TextBox wont work when you set its property as multiline?? Pin
eyes20076-Sep-07 19:58
eyes20076-Sep-07 19:58 
AnswerRe: Why is that property AutoCompleteCustomSource of a TextBox wont work when you set its property as multiline?? Pin
Dave Kreskowiak7-Sep-07 2:10
mveDave Kreskowiak7-Sep-07 2:10 
QuestionMicrosoft.Office.Core troubles Pin
frankiebaby26-Sep-07 16:57
frankiebaby26-Sep-07 16:57 
AnswerRe: Microsoft.Office.Core troubles Pin
Dave Kreskowiak7-Sep-07 2:12
mveDave Kreskowiak7-Sep-07 2:12 
GeneralRe: Microsoft.Office.Core troubles Pin
frankiebaby210-Sep-07 12:19
frankiebaby210-Sep-07 12:19 
QuestionRead binary file header and data array in VB 2005 Pin
Dave_66-Sep-07 13:30
Dave_66-Sep-07 13:30 
AnswerRe: Read binary file header and data array in VB 2005 Pin
Dave Kreskowiak7-Sep-07 5:16
mveDave Kreskowiak7-Sep-07 5:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.