TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Israel
703
1.3k
215.6k
Selected values from datagridview doesnt appear on textbox..
Jul 24 2014 2:51 PM
Hi!
When I select one row on my datagridview I doesnt see it on my textbox. Please have a look on my codes.
private void dgvPermissoes_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
if (e.RowIndex >= 0)
{
DataGridViewRow row = this.dgvPermissoes.Rows[e.RowIndex];
txtNomePermissoes.Text = row.Cells["nome"].Value.ToString();
txtSobrenomePermissoes.Text = row.Cells["sobrenome"].Value.ToString();
txtUsuarioPermissoes.Text = row.Cells["usuario"].Value.ToString();
txtSenhaPermissoes.Text = row.Cells["senha"].Value.ToString();
txtResultMaleFemale.Text = row.Cells["sexo"].Value.ToString();
}
Reply
Answers (
4
)
Generate datatable from a method
Update/Delete/Insert a new record in Multiply tables