Options

Concat Code & Text

Hello,

I tried to concat Code with Text. I have table with item categories and need to save categories (code) as text to Item table. Format: "#cat1#cat2#cat3#".

My attempt:
REPEAT
  lteCategories := lteCategories+lreItemCategories."Category Code";
  lteCategories := lteCategories+'#';
UNTIL lreItemCategories.NEXT() = 0;

But it didn't worked. So where is problem?
Tomáš Kapitán

Comments

  • Options
    KeptyKepty Member Posts: 54
    So...

    Why x := x + y not work, but x := y + x work fine?
    Tomáš Kapitán
  • Options
    mdPartnerNLmdPartnerNL Member Posts: 802
    where is your find ?
Sign In or Register to comment.