8/15/2011

Axapta X++ เก็บค่า string มาต่อกันไปเรื่อย ๆ

            str      sNarration ,sLastName  ประกาศตัวแปร
           
            sNarration = "" ;   Reset ค่าให้เป็นค่ีาว่างก่อน ไม่งั่นมันจะ ยาวไปเรื่อย ๆ
            sLastName = "" ;
                WHILE
                SELECT * FROM ... Table
                WHERE ... เงื่อนไข
                {
                     sNarration = TableVendInvoiceTrans.Name ;   ค่าที่ต้องการเก็บใหม่
                     if( sLastName == "" ){
                        sLastName = strfmt("%1", sNarration);
                     } else {
                        sLastName = strfmt("%1, %2", sLastName, sNarration); เอามาต่อไปเรื่อย ๆ ใช้ , คั่น
                     }
                }

No comments:

Post a Comment