
Click here for the link
This site contains some Microsoft Dynamics AX X++ Codes for use in your day to day use. However please use them with caution in production environment. I will not be responsible for any Goof ups. These Codes were created during my free time and may have bugs. Use them at your own discretion. Arijit Basu | India
BOOL Beep(DWORD dwFreq,DWORD dwDuration);
To get more information on Beep Click here
The AX Code is
static void AB_DLL(Args _args)
{
DLL winApiDLL = new DLL('kernel32');
DLLFunction Function = new DLLFunction(winApiDLL,'Beep');
Function.arg(extTypes::DWord,extTypes::DWord);
Function.call(400,1000);
}
Run this and u'll hear a beep (if ur sound is on).
In August 2006, Microsoft Corporation conducted the Microsoft Dynamics AX™ 4.0 Standard distribution benchmark to measure the performance and scalability characteristics of Microsoft Dynamics AX 4.0 in a simulated distribution scenario. This benchmark exercised core Accounts Receivables scenarios around order entry through invoicing, in addition to Procure to Pay processes around purchase order creation through receiving of goods.
Download White paper {Requires Partnersource Logon}
Large organizations struggle to maintain a balance between centralization in order to control system and information complexity across the extended enterprise and decentralization in order to encourage flexibility and agility among local subsidiaries or divisions. Through deployment of Microsoft Dynamics™ AX and Microsoft® BizTalk Server, enterprises can realize not only a simple, high-value solution that offers visibility, insight and control of information across the entire organization, but also the flexibility and agility that branch offices and subsidiaries require in order to innovate, grow, and compete effectively. This white paper will be of interest to the business decision maker who is looking to find a robust, high value solution that provides cross-functional integration and coordination of business applications and supply chain management applications across the extended enterprise.
Download the white paper {Require Partnersource Logon}The Microsoft Dynamics AX 4.0 version of the Rapid Configuration Tool is now available. This version of the tool builds on the previous two versions and works with the latest release of Microsoft Dynamics AX 4.0.
Download Rapid Configuration Tool (RCT)The Rapid Configuration Tool (RCT) for Microsoft Dynamics AX 4.0 is a tool that supports both partners and customers in the implementation and configuration process by providing and linking project management features, easier configuration access, communication support and documentation on how to configure Microsoft Dynamics AX. The Rapid Configuration Tool consists of functionality implemented as a module within Microsoft Dynamics AX.
{Requires Partnersource Logon}Super() is a call to the overriden method concerned in the super or parent class.
For the click event it does not serve any purpose since there is no change in functionallity if you remove it and you will not get any error.
For example:
if you create a class myCLASS1 and then inherit from it and override a method on it the call to super will execute the code from the inherited class.
If you remove super that code will not be executed and you may write different code for this method in the child class.
Simple :)
The problem is with the ACU config file in the bindir textbox, on the following line:
So change this to:
bindir,Text,C:\mbs\axapta client\Bin
The Ktd files live in the \Bin\ folder instead of the \Appl\ folder.
This will resolve your issue :)If you want to implement the pack/unpack mechanism on the Form {like the ones used in Runbase Classes} , it is easy ...
Besides Pack/Unpack, add these methods:
public dataAreaId lastValueDataAreaId()
{
return curExt();
}
private UserId lastValueUserId()
{
return curuserid();
}
private UtilElementType lastValueType()
{
return UtilElementType::Form;
}
private IdentifierName lastValueElementName()
{
return this.name();
}
private IdentifierName lastValueDesignName()
{
return '';
}
void initParmDefault()
{
}
In Close method of the form:
public void close()
{
super();
//add saveLast method after super()
xSysLastValue::saveLast(this);
}
in init method of the form:
public void init()
{
;
//Add getLast method before super()
xSysLastValue::getLast(this);
super();
…
}
Microsoft Dynamics AX 4.0 Service Pack 1 release
Dynamics AX 4.0 SP1
{The above links require Partnersource Logon}