[development-axapta] simple report question

2005-01-03 Thread Danny Gaethofs
Dear all, I want to realize that a control field in a programmable section repeats 5 times on the first line of my report. To test this I created a simple programmable section containing the field ItemId. I send the item record from the fetch() method. Using a while loop in my fetch

Re: [development-axapta] simple report question

2005-01-03 Thread Paulius Cerniauskas
I think it would be easier to create blank text field. then do something like: for (i=1; i=5;i++) { someStr --- Danny Gaethofs [EMAIL PROTECTED] wrote: Dear all, I want to realize that a control field in a programmable section repeats 5 times on the first line of my report. To

Re: [development-axapta] simple report question/correction

2005-01-03 Thread Paulius Cerniauskas
I think it would be easier to create blank text field. Set autodeclaration to yes, then do something like: for (i=1; i=n;i++) someStr += strfmt( %1,ItemId); where you need (this could be inside your fetch()method) then call programmable section once, but before that set text field value:

Re: [development-axapta] simple report question

2005-01-03 Thread Paulius Cerniauskas
I think it would be easier to create blank text field. Set autodeclaration to yes, then do something like: for (i=1; i=n;i++) { someStr += strfmt( %1,ItemId); } where you need (this could be inside your fetch() method) then call programmable section one time, but before that set text