shankar_it Posted October 7, 2005 Posted October 7, 2005 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. Quote
techmanbd Posted October 7, 2005 Posted October 7, 2005 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? Quote Live as if you were to die tomorrow. Learn as if you were to live forever. Gandhi
shankar_it Posted October 7, 2005 Author Posted October 7, 2005 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 Quote
IngisKahn Posted October 7, 2005 Posted October 7, 2005 Console only writes to the IDE window if it is set to do so in the options. Have you tried running your app outside of the IDE? Quote "Who is John Galt?"
techmanbd Posted October 7, 2005 Posted October 7, 2005 if you have a loop put in application.doevent inside the loop Quote Live as if you were to die tomorrow. Learn as if you were to live forever. Gandhi
shankar_it Posted October 10, 2005 Author Posted October 10, 2005 Application.DoEvents() works Thank you Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.