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
Pradeep Hembram
NA
6
611
Visibility of check box in Datagrid view of Windows Form.
Nov 9 2015 12:24 AM
foreach (DataGridViewRow row in dvgCbs3Prod.Rows)
{
if (Convert.ToDecimal(dvgCbs3Prod.Rows[row.Index].Cells[10].EditedFormattedValue) == 0)
{
dvgCbs3Prod.Rows[row.Index].Cells[10].Value = DBNull.Value;
//dvgCbs3Prod.Rows[row.Index].Cells[10] = new DataGridViewTextBoxCell();
}
else
{
dvgCbs3Prod.Rows[row.Index].Cells[10].Visible= false;
}
}
Guys I am using this code but it is not ....Plz suggest me how to hide the check box of a particular cell in datagrid view
Reply
Answers (
0
)
Bind combobox on celldoubleclick of datagridview
FilePermissions