[development-axapta] Re: How to use 2 grids using 2 differents datasources in the same form?

2005-03-21 Thread nicolaan
Hi Vince, I'd guess that's because you didn't join the 2 tables in your datasources. Set the joinsource and if requered the linktype. Regards, Nico --- In development-axapta@yahoogroups.com, vlemeunier2 [EMAIL PROTECTED] wrote: Hi, I'm a beginer in the magic world of axapta.

[development-axapta] Re: Select where with a filter

2005-03-14 Thread nicolaan
Hi Padmaja, It seems Axapta doesn't have wildcard (for this). (it does for other things) I can only think of a trick to do this. Instead of: LedgerTrans.Voucher == 'F111*' Use: LedgerTrans.Voucher = 'F111' LedgerTrans.Voucher 'F112' Regards, Nico --- In

[development-axapta] Re: Vertical barcode on report

2005-03-14 Thread nicolaan
Hi Vegar, Just use a barcode font. Any of the fonts starting with BC will print a barcode. So if you want to print some ID on your report change the font property of the control to BC..whatever.. Only I've no idea what barcode font you should use. You may need to find out what exactly it's

[development-axapta] Re: Text Case

2005-03-14 Thread nicolaan
Hi Luis, I don't understand your 1st question. The 2nd is easy. In your classDeclaration add a variable from extended data type LanguageIdAll for language like this: LanguageIdAll language; Now add the new method to your class. void new(LanguageIdAll _language) { language = _language; }

[development-axapta] Re: Outer join in X++

2005-03-11 Thread nicolaan
aptitude for ineptitude makes any human accomplishment an incredible miracle. - Col. John P. Stapp www.smallfrymobile.com http://www.smallfrymobile.com -Original Message- From: nicolaan [mailto:[EMAIL PROTECTED] Sent: 09 March 2005 05:17 PM To: development-axapta@yahoogroups.com

[development-axapta] Re: Outer join in X++

2005-03-09 Thread nicolaan
Hi Matt, I think this should work. while SELECT CUSTTABLE WHERE (ADDRESS.ADDRTABLEID == 77) (CUSTTABLE.MODIFIEDDATE mkdate(1, 3, 2005)) OUTER JOIN ADDRESS where CUSTTABLE.RECID == ADDRESS.ADDRRECID ADDRESS.ADDRESSTYPE == 'Invoice' Axapta works different with joins. First you

[development-axapta] Re: Custom textbox or grid cell

2005-03-01 Thread nicolaan
Hi Alessandro, What I tried and works is add a textChange method to your control with the following code: public void textChange() { str s; container sel; int periods[3]; int i; ; super(); periods[1] = 3; periods[2] = 6; periods[3] = 11; s = this.text(); if (strlen(oldS)