Welcome to MSDN Blogs Sign in | Join | Help

Issues concerning X++

This blog deals with issues about X++

Browse by Tags

All Tags » X++ Language   (RSS)
Conditional breakpoint workaround
As you may know, the Ax debugger does not feature conditional breakpoints. It does obviously allow you to set breakpoints, but there is no option to make them active depending on some condition that is evaluated each time the breakpoint is encountered. Read More...
Transforming X++ code to managed code: Check the video...
The channel 9 video: http://channel9.msdn.com/posts/Charles/Peter-Villadsen-and-Gustavo-Plancarte-Inside-Ax-Translator-X-to-MSIL/ showcases some work that the X++ team has done to investigate the options for transforming X++ code into managed code. We Read More...
Using the Cross company feature from the Business Connector.
In Ax 2009 the new cross company feature was introduced. It allows the programmer to specify a container containing strings denoting company names to the crosscompany hint: container c = ['dat', 'dmo']; select crosscompany: c * from custtable where custtable.Name Read More...
Caveat: Using the += and -= operators for dates.
As you may know, it is possible in X++ to add integers to dates. The semantics are that the integer value is considered a number of days to add or subtract to the date. { Date d; // ... d = d + 7 ; // Seven days later // ... d = d - 7 ; // Seven days Read More...
Getting rid of the "Loss of precision" warning message
A question came up at today's webinar where a developer had a (presumably legitimate) reason to cast a real value into an integer value. The X++ language does not allow explicit casting (there's no support for it in the language), but the compiler will Read More...
Page view tracker