摘要:
Expressions in query ranges One of least understood but most powerful Axapta features is the so-calledExpressions in query rangessyntax. This isnotthe same as simply using a Query... 阅读全文
摘要:
FTP from Axapta fromDevelopment Axaptaby (Dahlsgaard Jan) add at theclass declarationof theWinInet classthe following: DLLFunction internetConnect;DLLFunction ftpGetFi... 阅读全文
摘要:
Map Class Map (Foundation class)consist of a data set that contains a key and a corresponding value, where the key is unique. The key and the value need not be from the same data typ... 阅读全文
摘要:
Box class Box is a class used for showing an information- or confirmation box to the user. [edit]Example if (Box::yesNo("Is it safe to delete this?", DialogButton::No, "Delete inventory") == Dialog... 阅读全文
摘要:
Set Class Set consist of a data set that contains values of the same type, where value is unique. A Set is alway sorted on the value. Contents [hide] 1 How to use 1.1 Define ... 阅读全文
摘要:
static void NJ_MF_Test_ExcelIoTest(Args _args) { ExcelIo io; #Excel dialogField dialogFilename; Dialog dialog = new Dialog("Excel Upload"); container con; ;... 阅读全文
摘要:
Edit方法参数个数可以有两个也可以有三个,如果有三个参数那么第二个参数一定要是Table edit NoYes markLine(boolean _set, InventTable _table, NoYes _value) { if (_set) { //Add or remove the selected line from th... 阅读全文
摘要:
void updateDesign() { FormDataObject fldItemName; // Only allow the item name to be modified if it's a service item // // Notice that this effects the controls both on the... 阅读全文
摘要:
public void displayOption(Common _record, FormRowDisplayOption _options) { GridColours gridColoursLocal = _record; ; super(_record, _options); // If highlight flag is set,... 阅读全文
摘要:
SysEmailBatch The SysEmailBatch class is used for sending emails from Axapta. SysEmailBatch mailer; mailer = SysEMailBatch::construct();mailer.parmPriority(emailPriority::Normal);mailer.parmSender... 阅读全文