Example #1
0
        private void FullBinAction()
        {
            string newBin = "";

            try
            {
                newBin = WSWmsHelper.TranspBinFull(zielTextView.Text, leNummer);
            }
            catch (Exception ex)
            {
                Utility.ShowErrorMessage(this, "TranspBinFull - ERROR:" + ex.Message);
                return;
            }

            if (string.IsNullOrEmpty(newBin))
            {
                Utility.ShowErrorMessage(this, "NO New bin");
                return;
            }

            zielTextView.Text = newBin;
        }