Console Application Busy Cursor
-
Is there a way to show busy cursor (revolving or other type) in C# ? Ex. Processing Item 1 ...(*) <- flashing cursor Processing Item 1 ...OK I have seen this functionality in legacy console application, but don't know how to achieve this. Many Thanks, h. :rose:
-
Is there a way to show busy cursor (revolving or other type) in C# ? Ex. Processing Item 1 ...(*) <- flashing cursor Processing Item 1 ...OK I have seen this functionality in legacy console application, but don't know how to achieve this. Many Thanks, h. :rose:
//start processing this.Cursor = Cursors.WaitCursor; //this will show the hourglass //finish processing this.Cursor = Cursors.Default;
-
//start processing this.Cursor = Cursors.WaitCursor; //this will show the hourglass //finish processing this.Cursor = Cursors.Default;
this.Cursor applies to System.Windows.Forms ? It does'nt work with System.Console class. If you find any method, please do post another reply. Thanks for giving it a try. h. :((