Re: [development-axapta] Encrypt code

2007-05-29 Thread Arijit Basu
Hi Gonzalo, Check this out http://www.nextinnovation.com/framework.asp?page=codescrambler Its called Code Scrambler Cheers Arijit Basu MVP | Dynamics AX http://daxguy.blogspot.com/ On 5/26/07, gonzalo_edo <[EMAIL PROTECTED]> wrote: > > Hi all... > > Any one know how to encrypt code in AX, I

Re: [development-axapta] getting values from the calling form

2007-05-29 Thread Sailendran Rajan
Hi, In the clicked event, populate the Args object with the "text". and pass it to the report. ie, Args args = new Args(); args.parm(text); if u have some complex data /object to be passed use args.parmObject(class object). Now in the init of the report get the args object