[Axapta-Knowledge-Village] Re: Column Headers in a DataGrid

2005-03-14 Thread nicolaan
If you simply want to play with the text in the headers, just change the Label of the 2 controls in the grid for column A and B. (don't forget to set the autodeclarion of the 2 controls to true) Or do you want more then this? And the headers as in Axapta are just labels for the controls that

[Axapta-Knowledge-Village] Re: Return Array of Class

2005-03-02 Thread nicolaan
Hi Krish, My test in Axapta 3.0 SP3 shows different from what you state (as I understand it...) This is my testcode. static void Job1(Args _args) { Array a = new Array(types::Class); Testclass testclass; int i; ; for (i=1; i<100; i++) { testclass

[Axapta-Knowledge-Village] Re: Temporary tables Vs Regular Table

2005-03-02 Thread nicolaan
I've also once used a regular instead of a temp table, so yes sometimes (for joins, special lookups or other) it can be better. However, with regular tables you'll have multiuser problems with deleting records. Only real safe way would be to add some field with a unique sessionID for this use