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] issue while exporting and importing data in Ax3.0

2009-02-10 Thread MaryAnn Hand
I would suspect the reason you do not see the general table is is related to the permissions you have been granted in that instance of AX. You might try launching the Definition group menu option instead to see if that opens. Try to create a definition group with the tables you need to export.

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

RE: [Axapta-Knowledge-Village] Re: Inventory opening balances

2009-02-10 Thread Abdullah Al-Nunu
Hi Anil, Thanks for your answer. I am using Ax 2009. I tried to make the std import from excel sheet to the movement journal, but I believe that there are more than one table to import to (e.g. InventJournalTrans InventTrans) Actually, I don't know the exact tables to import to and if

Re: [Axapta-Knowledge-Village] Serial number - production order

2009-02-10 Thread hany ali
Dear All,   To generate serial numebers automatically after report as finished the production order: 1-Serial number must be active in the Dimension group 2-u must link the BOM with a Serial number group   inventory managementItems general tab  3-If there is no serial number group, create

[Axapta-Knowledge-Village] How to Create Licence File for Third Party Modules

2009-02-10 Thread jazib.abdulah
Hi Guys We are new in the development of Axapta and X++. My company has created a new Module for Axapta. Now we have to distibute it to our customers. So we want to Create Licence Files for our module of Axapta for our customers. Same kind of Liscence files which we got from Microsoft to

RE: [Axapta-Knowledge-Village] Re: Inventory opening balances

2009-02-10 Thread Jens Strandberg
Hello there, You might want to try this: Once you have loaded the Import Journal, you could do a Function/Copy of that journal. In this way, the nescessary records in various tables are created automatically, and afterwards you should be able to post the journal. I have done so many times