lingdanglfw(DAX)

导航

2009年2月10日

Task

摘要: Automatically open grid filter when opening form In some forms it may be convenient that the grid filter (new in Ax 4.0) is activated automatically. If you want to get that behaviour, just add one l... 阅读全文

posted @ 2009-02-10 16:24 lingdanglfw 阅读(307) 评论(0) 推荐(0)

2008年11月17日

lookup (relation)

摘要: EDT(relation to Table)-->Table(form ref to Master Form) or Table(relation EDT field to Master Table) 阅读全文

posted @ 2008-11-17 11:59 lingdanglfw 阅读(192) 评论(0) 推荐(0)

2008年10月14日

CustVend Settlement by programming

摘要: 在这里备注一下:(程序结算) static void testCustTransSettle(Args _args) { custtable ct; custaccount acc; custtrans cut, cut1,cut2; custTransOpen custVendTransOpen; //初始化结算辅助类,传入客户代码 Specifi... 阅读全文

posted @ 2008-10-14 10:17 lingdanglfw 阅读(271) 评论(0) 推荐(0)

2008年9月23日

Crystal Report in AX

摘要: COM com = new COM("CrystalRuntime.Application"); COM report = new COM("CrystalRuntime.Report"); str pathfile = "F:\\CrystalReport1.rpt"; ; report = com.OpenReport(pathfile,... 阅读全文

posted @ 2008-09-23 13:59 lingdanglfw 阅读(227) 评论(0) 推荐(0)

2008年9月9日

Customize User Level Security Control

摘要: 1、 Add QueryBuildRange in ClassDeclare Section public class FormRun extends ObjectRun { QueryBuildRange qbRange; } 2、 Add a Method in Form(or Write a Class Function) Boolean ChkUserAss() { ... 阅读全文

posted @ 2008-09-09 09:49 lingdanglfw 阅读(218) 评论(0) 推荐(0)

2008年9月3日

how to open HxS(ms help 2.x file)

摘要: 1、运行h2reg -r "CmdFile=e:\help\cfx_web_cmd.ini" 2、运行"C:\Program Files\Common Files\Microsoft Shared\Help 8\dexplore.exe" /helpcol ms-help://SFX.CHARTFX(或者建立一个快捷方式) (必须:安装VS2005,h2reg) 阅读全文

posted @ 2008-09-03 10:42 lingdanglfw 阅读(447) 评论(0) 推荐(0)

2008年9月2日

Graphics In Report

摘要: download and install ChartDirector for ASP/COM/VB Add a Bitmap in Report and set method = calcBarchart Add a method calcBarchart in Report display container calcBarchart() { container con; ... 阅读全文

posted @ 2008-09-02 16:33 lingdanglfw 阅读(273) 评论(0) 推荐(0)

Graphics In Form

摘要: Add a method in Graphics(Class) void parmStacked(int _stacked = 0) { ; chartFXCtrl.stacked(_stacked); } Add a ActiveX(Chart Object) in a Form and set name="MyGraphics" and Add a method in... 阅读全文

posted @ 2008-09-02 16:28 lingdanglfw 阅读(298) 评论(0) 推荐(0)

2008年8月13日

Join Source

摘要: info("Begin:"+queryvalue(timenow())); ttsbegin; while select _invTrans join _invTable where _invTrans.JournalId == _invTable.JournalId && _invTable.BSEFinish... 阅读全文

posted @ 2008-08-13 16:16 lingdanglfw 阅读(233) 评论(0) 推荐(0)

2008年8月6日

jumpref method

摘要: Bs_Pro_TYearTable::jumpRefYearTable(this); Bs_Pro_TYearTable static void jumpRefYearTable(Object _caller) { //super(); Args args; FormRun formRun; ; args = new Args(fo... 阅读全文

posted @ 2008-08-06 12:08 lingdanglfw 阅读(288) 评论(0) 推荐(0)