[spam] RE: [development-axapta] Re: read multi row select

2004-02-05 Thread Morten Aasheim
Yahoo! Groups SpamGuard has detected that the attached message to the group development-axapta is likely to be spam. For more information about SpamGuard, please visit our help pages: http://groups.yahoo.com/local/spamguar

RE: [development-axapta] Re: read multi row select

2004-02-05 Thread Gert Neetesonne
Yes, There is a property multiselect on your button itself. Put that property to yes Gert Neetesonne Edan Business Software >From: "byteway_so" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: [EMAIL PROTECTED] >Subject: [development-axapta] Re: read multi row select >Date: Thu, 05

RE: [development-axapta] Re: read multi row select

2004-02-05 Thread Morten Aasheim
I prefer doing it like this:     ZipCode zipCode;   if (DataSource1_DS.getFirst(true))   zipCode = DataSource1_DS.getFirst(true);   while(zipCode) {   //zipCode.DoSomething()   zipCode = DataSource1_DS.getNext(); }     Morten, CSY J   From: b

RE: [development-axapta] Re: read multi row select

2004-02-05 Thread Gert Neetesonne
Hi, Use common.(fieldId2Ext(fieldId, 0)). In case of a normal field, use 0 In case of an array field, use the array number instead of 0 FieldId variable is the field ID of the field you want to access. Gert Neetesonne Technical Product Manager Edan Business Software >From: "byteway_so"