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
romasha ali
NA
94
38.3k
how to multiply two columns and get result in next culomn?
Apr 1 2016 6:42 PM
hi,
i m trying this code but it show anything in result column kindly guide..
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
for (int n = 0; n < (dataGridView1.Rows.Count - 1); n++)
{
int s = Convert.ToInt32(dataGridView1.Rows[n].Cells[3].Value);
int s1 = Convert.ToInt32(dataGridView1.Rows[n].Cells[4].Value);
int s13 = s1 + s;
dataGridView1.Rows[n].Cells[5].Value = s13;
}
Reply
Answers (
4
)
Dynamic textboxes
Ask about resizing between 2 pannel ?