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

2004-02-05 Thread Morten Aasheim
-axapta] Re: read multi row select   Do you mean this? Combining your replies, I get the following: void clicked() {     Common  tmpDS;     ZipCodeId   zipCodeId;     ;     if (DataSource1_DS.getFirst(true))   tmpDS = DataSource1_DS.getFirst(true);     while(tmpDS)     {     tmpDS

[development-axapta] Re: read multi row select

2004-02-05 Thread byteway_so
Do you mean this? Combining your replies, I get the following: void clicked() {     Common  tmpDS;     ZipCodeId   zipCodeId;     ;     if (DataSource1_DS.getFirst(true))   tmpDS = DataSource1_DS.getFirst(true);     while(tmpDS)     {     tmpDS = DataSource1_DS.getNext();    

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 mul

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

2004-02-05 Thread Morten Aasheim
: byteway_so [mailto:[EMAIL PROTECTED] Sent: 5. februar 2004 09:32 To: [EMAIL PROTECTED] Subject: [development-axapta] Re: read multi row select   Thanks for your reply. But how do i read the field values of this common variable? It does not work if I add a variable for the table, i.e. the

[development-axapta] Re: read multi row select

2004-02-05 Thread byteway_so
That was quick!!! I just saw that it was also possible to not use a Common declaration, but use the table name instead. Is there also a property I need to set to prohibit that my button gets greyed out when multi selecting rows? >Use common.(fieldId2Ext(fieldId, 0)). >In case of a normal f

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

2004-02-05 Thread Gert Neetesonne
teway_so" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: [EMAIL PROTECTED] >Subject: [development-axapta] Re: read multi row select >Date: Thu, 05 Feb 2004 08:31:37 - > >Thanks for your reply. >But how do i read the field values of this common variable? &

[development-axapta] Re: read multi row select

2004-02-05 Thread byteway_so
Thanks for your reply. But how do i read the field values of this common variable? It does not work if I add a variable for the table, i.e. the zipcode table. Can you please shed your light over this too? void clicked() {     Common tmpDS;     ZipCode zipCode;     ;     if (DataSource1_DS.ge