RE: [development-axapta] html document in a form

2009-09-03 Thread Serge Boomsma
Hi, If you use the following code in the init-method of the form, it will show the webpage. ActiveX.Navigate("http://www.yahoo.com";); The ActiveX on the form should have autodeclaration set to yes. Regards, Serge Boomsma -Oorspronkelijk bericht- Van: development-axapta@yahoogroups.co

[development-axapta] Re: How to show a webpage in Ax 3.0

2009-09-03 Thread jcristobaal
Hi all Dear S., This is an interesting question, and as it tickled my curiosity, I've investigated and tested a few tricks. Your solution lies in the activeX technos : - Add the activeX called "Microsoft Web Browser" to your design - check if it's autodeclared (Property normally defaulted to yes)

Re: [development-axapta] Re: How to show a webpage in Ax 3.0

2009-09-03 Thread mni_col
infolog.helpGenerator().showURL use form SysHelp. Perhaps here you found an example in standard how to do. \Forms\SysHelp\Designs\Design\[Group:MainGrp]\[Group:DocTab]\ActiveX:Doc Is the webrowser activeX to show the page. From: surfing2alien Sent: Wednesday, September 02, 2009 7:20 PM To: deve

AW: [development-axapta] Re: How to show a webpage in Ax 3.0

2009-09-03 Thread jesper.joergensen
HI Take a look at the form "DocuView". Microsoft uses an ActiveX control "Microsoft Web Browser". Mit freundlichen Grüßen / Best regards / Med venlig hilsen Jesper Jørgensen / Abt. NMT-XD Senior Product Manager arvato systems | Technologies GmbH An der Autobahn 18 33311 Gütersloh jesper.joergen.

RE: [development-axapta] html document in a form

2009-09-03 Thread Malcolm Burtt
Hi You could try adding a "Microsoft Web Browser" ActiveX control to your form. I'm not sure exactly how you'd point that at www.yahoo.com but I'm pretty sure this will do the job. Malcolm Burtt Touchstone Group People - Partnership - Solutions From: development-axapta

AW: [development-axapta] How to call a form method from method of other form

2009-09-03 Thread jesper.joergensen
HI, the class Global has a method "formHasMethod", to avoid a stack trace at runtime you might want to check if the caller has the method before you executes it using object. Object cannot validate the existence of the method during compilation. Best regards Jesper Von: development-axapta@yahoo

[development-axapta] Print Excel files in AX through Specific Printer

2009-09-03 Thread sizzanjali
Hi All, How to print excel files from AX through specific?Please reply ASAP. Thanks in advance Anjali Khati

RE: [development-axapta] report custumisation

2009-09-03 Thread Ruel Ormita
Hello, Create a string element then put ‘PagesTotal’ in the datamethod. This will automatically count your page total. _ From: development-axapta@yahoogroups.com [mailto:development-axa...@yahoogroups.com] On Behalf Of Lorng Issiak Laïssi Sent: Thursday, August 27, 2009 10

[development-axapta] Re: How to show a webpage in Ax 3.0

2009-09-03 Thread surfing2alien
Thanks Michael this sure is an easy way. However I see I asked the wrong question. I need to show it in a form I cannot see yet how to display the infolog in a form Any help with that please? S. --- In development-axapta@yahoogroups.com, wrote: > > Hi, > > perhaps infolog.helpGenerator().sho

Re: [development-axapta] Report

2009-09-03 Thread srinath s
Hi pooja,   You can use epilog(part of report design)  which will execute at last. If you have any doubt regarding this please feel free to let me know on the same.   Regards, srinath.s --- On Sun, 30/8/09, Pooja . wrote: From: Pooja . Subject: [development-axapta] Report To: development-a

RE: [development-axapta] How to call a form method from method of other form

2009-09-03 Thread Malcolm Burtt
Hi Assuming that form B has been called from form A you can say... void B() { Object formAobj = element.args().caller(); ; // Check that this form was opened from FormA If ( formAobj && formAobj.name() == formstr(FormA) ) { // Call method A on FormA formAobj.A() }