Kadov Posted February 3, 2017 at 10:58 AM Report Share #602309 Posted February 3, 2017 at 10:58 AM (edited) Olá, amigos. Gostaria de pedir ajuda quanto a um pequeno probleminha. Possuo um datagridview que é preenchido por um datatable e possui uma coluna com checkboxs. Realizei um código para copiar as linhas marcadas de um datatable para o outro. Porém o último item marcado nunca é copiado. O que eu posso fazer para arrumar isto? Obrigado. Segue o código que realiza a cópia: foreach(DataGridViewRow row in dataGridView1.Rows) { cell = row.Cells["MARCAR"] as DataGridViewCheckBoxCell; bool bChecked = (null != cell && null != cell.Value && true == (bool)cell.Value); if (bChecked) { dtbloco.ImportRow(dt.Rows[row.Index]); } } Edited February 9, 2017 at 10:42 AM by Kadov Link to comment Share on other sites More sharing options...
Kadov Posted February 13, 2017 at 12:45 PM Author Report Share #602462 Posted February 13, 2017 at 12:45 PM Alguém consegue me ajudar? Não consegui resolver o problema. Link to comment Share on other sites More sharing options...
Guest Posted February 13, 2017 at 02:26 PM Report Share #602464 Posted February 13, 2017 at 02:26 PM Deve ser porque está em edição. Testa mudar de linha antes de copiar. Ser for isso, existe forma de forçar o fim da edição Link to comment Share on other sites More sharing options...
Kadov Posted February 14, 2017 at 11:01 AM Author Report Share #602481 Posted February 14, 2017 at 11:01 AM Realmente era isso. Muito obrigado! Caso alguém precise, eu adicionei esse código antes de realizar a cópia: this.dataGridView1.EndEdit(); Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now