void TraslateTo(int InpDigit)
        {
            switch (SCHDDL.SelectedItem.Value)
            {
            case "2":
                TresTranslate.Text = BinaryOperation.DelZNK(ConvertDigit.ConvertToBIN(InpDigit));
                break;

            case "8":
                TresTranslate.Text = ConvertDigit.ConvertToOCT(InpDigit);
                break;

            case "10":
                TresTranslate.Text = ConvertDigit.ConvertToDEC(InpDigit);
                break;

            case "16":
                TresTranslate.Text = ConvertDigit.ConvertToHEX(InpDigit);
                break;
            }
        }
        protected void TranslateBtn_Click(object sender, EventArgs e)
        {
            TinputSCH.BorderStyle = BorderStyle.None;
            TinputSCH.BorderColor = Color.White;
            Trnsltlbl.Visible     = false;
            int InpDigit = 0;

            if (!string.IsNullOrEmpty(TinputSCH.Text))
            {
                switch (SCHDDL0.SelectedItem.Value)
                {
                case "2":
                    try
                    {
                        InpDigit = Convert.ToInt32(BinaryOperation.DelZNK(TinputSCH.Text), 2);
                        TraslateTo(InpDigit);
                    }
                    catch
                    {
                        CatchNONWR();
                    }
                    break;

                case "8":
                    try
                    {
                        InpDigit = Convert.ToInt32(TinputSCH.Text, 8);
                        TraslateTo(InpDigit);
                    }
                    catch
                    {
                        CatchNONWR();
                    }
                    break;

                case "10":
                    try
                    {
                        InpDigit = Convert.ToInt32(TinputSCH.Text);
                        TraslateTo(InpDigit);
                    }
                    catch
                    {
                        CatchNONWR();
                    }
                    break;

                case "16":
                    try
                    {
                        InpDigit = Convert.ToInt32(TinputSCH.Text, 16);
                        TraslateTo(InpDigit);
                    }
                    catch
                    {
                        CatchNONWR();
                    }
                    break;
                }
            }
        }