摘要: AX在插入一条纪录的时候会自动生成recId,每条纪录的recid是全局唯一的,如果知道了recid和tableid,关于如何找到纪录已经有很多的介绍,典型的做法是:public Common findRecord(TableId _tableId, RecId _recId, Boolean _forUpdate = false){ Common common; DictTable dictTable; ; dictTable = new DictTable(_tableId); common = dictTable.makeRecord(); ... 阅读全文
posted @ 2012-07-05 13:29 断水流 阅读(1187) 评论(0) 推荐(0) 编辑
摘要: 首先我们知道有几种VC可以创建的DLL:第一种 非MFC的DLL,这是通过DLL形式的win32 project来创建的,这种DLL的入口函数形如:BOOL APIENTRY DllMain( HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved ){ switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH: case DL... 阅读全文
posted @ 2012-07-05 11:26 断水流 阅读(2968) 评论(0) 推荐(0) 编辑