[Axapta-Knowledge-Village] Query Building Tool in AOS

2009-06-09 Thread altgrep
Hello Everyone, A common complaint I hear from folks new (and some longtime users) to AX is that they want the query building functionality they have in SQL Server Manager regarding the ability to build queries using the visual tool... see the resulting data set, and tweak away. Ideally AX

[Axapta-Knowledge-Village] Way to NOT pass data reference when Clicking on menuItemButton

2009-04-09 Thread altgrep
Is there a simple setting that will allow me to have a menuItemButton that opens one form from another without passing along any data reference from the form I'm on when I click the menuItemButton? I can do this by overriding the clicked method on the button... but it seems like there should

[Axapta-Knowledge-Village] Re: How to return str[]?

2009-04-08 Thread altgrep
or list just a suggestion... Thanks Regards Pradeep S.Itnal mob:+91-9886529409 --- On Tue, 7/4/09, altgrep wytsw7...@... wrote: From: altgrep wytsw7...@... Subject: [Axapta-Knowledge-Village] How to return str[]? To: Axapta-Knowledge-Village@yahoogroups.com Date: Tuesday, 7 April

[Axapta-Knowledge-Village] How to return str[]?

2009-04-07 Thread altgrep
Hello Everyone, I have been trying to figure out how to return an array of strings like this: public str[] exReturnArray() { str strArray[]; ; strArray[1] = mon; strArray[2] = tues; strArray[3] = wed; strArray[4] = thur; return strArray; } I get different errors