if etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
if etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

27 Kasım 2012 Salı

If and like

In axapta like operator can use with if command like sql - select command :

if (ItemId like "WX*")

12 Eylül 2012 Çarşamba

AXAPTA - X++ If and blocks

This code part below has mistake?


            if (_ServiceShipment == B_SMAServiceShipment::B_Hand)
                if (!Personels.WithHand)
                    continue;
I was thinking not. Because I thought second if with continue should be consider as one command. But it seem not. Requires paranthesis:

            if (_ServiceShipment == B_SMAServiceShipment::B_Hand)
            {
                if (!Personels.WithHand)
                    continue;
            }