We created a macro to post a transaction in dynamics GP in one of the ISV products.
One of the steps in the macro is to check a box. However, the macro actually changes the state fo the box from unchecked to checked or checked to unchecked.
Since I am not a programmer i don't know how to change the macro so that the box is simply checked.
I will include the part of the macro in question. See highlighted area
Note: this is the macro that is run when F11 runs:
# DEXVERSION=10.0.320.0 2 2
CheckActiveWin dictionary 'Horizons Manufacturing Suite' form 'IV_Production_Entry' window 'Production Entry'
MoveTo field 'HZ_Prod_GoTo' item 0
ClickHit field 'HZ_Prod_GoTo' item 1 # 'FG Distribution'
NewActiveWin dictionary 'Horizons Manufacturing Suite' form 'IV_Production_MPP' window 'Reverse Finished Goods'
# Key 3: '004-09-0372', '1', 'L-004-0044-AB', '10'
MoveTo line 1 scrollwin 'Reverse FG Scroll' field 'Marked To Post' # 'FALSE'
# Key 3: '004-09-0372', '1', 'L-004-0044-AB', '10'
ClickHit line 1 scrollwin 'Reverse FG Scroll' field 'Marked To Post' # 'TRUE'
MoveTo field 'HZ_Recalc_Costs'
ClickHit field 'HZ_Recalc_Costs'
*This post is locked for comments