console.out

shankar_it

Freshman
Joined
Jul 6, 2005
Messages
46
i use console.out to display a string.

Console.WriteLine("Downloading " & y & ".pdf...")

Is there a way to display this output line in the MS Dos promt rather then displaying in the debug part in the VB.net screen.

I am intrested in showing in the MS Dos promt bcs i canot view the console.writeline output when i deploy the application.

Can any one help me in this.
 
shankar_it said:
i use console.out to display a string.

Console.WriteLine("Downloading " & y & ".pdf...")

Is there a way to display this output line in the MS Dos promt rather then displaying in the debug part in the VB.net screen.

I am intrested in showing in the MS Dos promt bcs i canot view the console.writeline output when i deploy the application.

Can any one help me in this.
Why not just create a form for text and send the info you want displayed to the form?
 
I using for loop and downloading real data files.And when i try to use another form or the same form to display some thing it does display any thing till the download for loop stops.I want to show the user the files they are downloading as it goes which is the reason i though MSDOS mode will be good
 
Back
Top