Re: [Axapta-Knowledge-Village] changing mouse pointer

2009-02-10 Thread MaryAnn Hand
Use a call to startLengthyOperation(); // this will turn on the hour glass for mouse pointer endLengthyOperation(); // this will turn it off again On Wed, Feb 4, 2009 at 10:27 AM, Leandro Taschek aporte...@terra.com.br wrote: Hi, How can I change the mouse pointer, in x++? I

Re: [Axapta-Knowledge-Village] changing mouse pointer

2009-02-10 Thread Sumit Loya
Hi, Try using WinApi::SetCursor Method here is an example job static void Job1(Args _args) { #WinApi ; WinApi::setCursor(#IDC_APPSTARTING); } Regards, Sumit On Tue, Feb 10, 2009 at 3:24 PM, MaryAnn Hand maryann.h...@gmail.comwrote: Use a call to startLengthyOperation(); //

Re: [Axapta-Knowledge-Village] changing mouse pointer

2009-02-10 Thread Sumit Loya
Hi, This is even better implementation #WinApi *int hCursor = WinAPI::loadStdCursor(#IDC_CROSS); //Load the cursor required *; WinApi::setCursor(hCursor); //Set the cursor Regards, Sumit On Tue, Feb 10, 2009 at 4:09 PM, Sumit Loya loya.su...@gmail.com wrote: Hi, Try using

[Axapta-Knowledge-Village] changing mouse pointer

2009-02-09 Thread Leandro Taschek
Hi, How can I change the mouse pointer, in x++? I remember, that doing this in VB was mousepointer=hourglass. But in the X++, I don't know how to do this. Sorry my english