private void lbox_Tatuadores_Click(object sender, EventArgs e)
        {
            if (lbox_Tatuadores.SelectedIndex != -1)
            {
                TatuadorBD obj_TatuadorBD = new TatuadorBD();

                string sLinha = lbox_Tatuadores.Items[lbox_Tatuadores.SelectedIndex].ToString();

                int ipos = 0;

                for (int t = 0; t <= sLinha.Length; t++)
                {
                    if (sLinha.Substring(t, 1) == "-")
                    {
                        ipos = t;
                        break;
                    }
                }

                Tatuador_Principal.COD_TATUADOR = Convert.ToInt16(sLinha.Substring(0, ipos));

                Tatuador_Principal = obj_TatuadorBD.FindByCodTatuador(Tatuador_Principal);

                PopulaTela(Tatuador_Principal);

                obj_FuncGeral.StatusBtn(this, 2);
            }
        }