-
I created a customized report by first making a duplicate of a standard report. I found the form used to enter criteria for the report (right click -> setup), then copied and modified the criteria form as well. I read about creating report links on MSDN, yet I can't seem to find how the original...
Posted to
Dynamics AX / Axapta - Developer Forum
(Forum)
by
rossd
on
Oct 15, 2008
Filed under: Dynamics AX, Axapta, Table Relations, X++, AX Reporting, AX 4.0, Range Data Query, X++ Namespaces, dynamics, ax, form events
-
Hello. I'm working with Dynamics AX 4.2. Has anyone figured out a way to save a user's customized profile for a form. Once the user creates his/her personal form, it can be wiped out if their usage data is cleared. I was looking for a way to save that form in case this ever happens. Thanks for...
-
Create a new method on WinAPI class: static int setWindowLong (HWND _HWND, int _nIndex, int _dwNewLong) { DLL DLL; DLLFunction DLLFunction; ; DLL = new DLL(#UserDLL); DLLFunction = new DLLFunction(DLL, ' SetWindowLongA ' ); DLLFunction.arg(ExtTypes::DWord, ExtTypes::DWord, ExtTypes::DWord); DLLFunction...
-
You are probably looking for the modified() method on the control (or on the datasource field or modifiedField on the table) This method gets called automatically after you selected a new value (Item Number, in this case)
-
Basically, on the button you just need to call YourDataSourceName_ds.create(); This does the same as Ctrl+n