.NET, ASP.NET, C#, VB.NET, SQL Server, WPF, XAML
Login
Articles
About Us
Submit Article
Use this code
Aravind Kumar
replied to Arun Kumar at 12-May-08 02:36
void fnButton_Click(...)
{
this.Cursor = Cursors.WaitCursor;
try
{
ReportFunction();
}
catch(...)
{
//...
}
finally
{
this.BringToFront();
this.Cursor = Cursors.Default;
}
}
Click here to sign in and reply. You could earn money via our $500 contest just for being helpful.
Changing the cursor to Wait cursor - Arun Kumar 12-May-08 02:29 2:29:56 AM
Use this code - Aravind Kumar 12-May-08 02:36 2:36:37 AM
FAQ's on using cursors (with code) - Rakesh Vikram 12-May-08 03:08 3:08:49 AM
Try this to change cursor - Sujit Patil 12-May-08 02:39 2:39:02 AM
Re: - Sunil Lakshkar 12-May-08 02:40 2:40:37 AM
check here... - Vasanthakumar D 12-May-08 02:40 2:40:57 AM
Re: Changing corsor - Chirag Bhavsar 12-May-08 02:57 2:57:43 AM
here it is... - santhosh kapa 12-May-08 02:59 2:59:12 AM
Hi - Rave Rasaiyah 12-May-08 05:15 5:15:29 AM
View Posts