[development-axapta] Pass variable by reference

2005-11-23 Thread kamchung322
Hi All, Can I pass a variable to a method by reference ? Regards. Kenneth. SPONSORED LINKS Computer part Programming languages

SV: [development-axapta] Debugger in Axapta 3.0 SP4

2005-11-23 Thread Steen Andreasen
Hi Tom, You can get a list of your breakpoints by pressing shift+F9 anywhere in the AOT. The breakpoints are stored by the system class XInfo.breakpoint(). Best regards, Steen Andreasen http://www.steenandreasen.com/axaptabook.asp taulbert2000 [EMAIL PROTECTED] skrev: Hello group!

AW: [development-axapta] Debugger in Axapta 3.0 SP4

2005-11-23 Thread Gahr, Andreas
Hi Tom, breakpoints are stored in the registry on the machine, the client is running on. Greatings Andreas Von: development-axapta@yahoogroups.com im Auftrag von taulbert2000 Gesendet: Di 22.11.2005 16:15 An: development-axapta@yahoogroups.com Betreff:

[development-axapta] Re: Getting the current company

2005-11-23 Thread axapta_coder
--- In development-axapta@yahoogroups.com, Raimond Ståløy [EMAIL PROTECTED] wrote: You can use the function curExt() to return the current company. //SSA hi :-) Is there a way to retrieve the current company in x++ code. Something like Mystring = getCompany(); ?

[development-axapta] args

2005-11-23 Thread byteway_so
Hi, How can I pass a datasource (with selected records) in an args object? Tried the dataset method without luck, also parm(datasourceName) didn't work. Args arg; ; args = new Args(); //args.parm(datasourceName); //args.dataset()= datasourceName; Any hints?

RE: [development-axapta] Parent/child forms and updating of parent data by child form's functionality

2005-11-23 Thread Christoph Malherbe
Hi John, Thanks for the explanation. It's given me a little more fundamental understanding of how to get things done. One further matter: What code should I implement in the bookRefresh method to get the parent form to update. I've tried - parent_ds.refresh(); - parent_ds.refreshEx();