private void IncluirUsuario()
        {
            FUNCIONARIOTableAdapter func = new FUNCIONARIOTableAdapter();
            ACESSOSISTEMATableAdapter acesso = new ACESSOSISTEMATableAdapter();

            DataTable funcionarios = func.GetData();
            DialogResult resultado = MessageBox.Show("Atenção","Confirmar inclusão?",MessageBoxButtons.YesNo);
            int id = 0;

            if (resultado == System.Windows.Forms.DialogResult.Yes)
            {
                for (int i = 0; i < funcionarios.Rows.Count; i++)
                {
                    DataRow linha = funcionarios.Rows[i];

                    if (txNome.Text.ToUpper().Equals(linha["NOME"].ToString()))
                    {
                        id = int.Parse(linha[0].ToString());
                        break;
                    }
                }

                if (txSenha.Text.Equals(txConfirmarSenha.Text) && txSenha.Text != "" && txConfirmarSenha.Text != "" &&
                    txNome.Text != "" && txMatricula.Text != "" && txSenha.Text.Length > 5)
                {
                    if (id == 0)
                    {
                        func.Insert(txNome.Text.ToUpper(), txMatricula.Text);
                        id = (int)func.RetornaIDPorNome(txNome.Text.ToUpper());
                        acesso.Insert(id, (int)cbAcesso.SelectedValue, (int)cbSetor.SelectedValue, txLogin.Text, txSenha.Text);
                        MessageBox.Show("Ok!");
                        btnLimpar.PerformClick();
                    }
                    else
                        MessageBox.Show("Usuario já cadastrado");
                }
                else
                {
                    MessageBox.Show("Senhas não conferem!!\n Ou faltam alguns dados...");
                }
            }
        }