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
Mamta Jain
NA
417
14.3k
code has not been effect on form load event .
Jan 10 2017 12:13 AM
I have done coding of serial number in grid view in the load event of the form but when I am executing the form , The serial number code has not been shown in data grid view . but when same load event when I am calling from the button_Click event than Data grid view serial number is seen . why this happening ?
Load event of form :
private void Frm_View_Upload_Paper_Load(object sender, EventArgs e)
{
lan_id = que.language_ID();
DataSet ds = new DataSet();
string query = "Select * from VW_file_Upload_Download";
ds = que.execute_query_with_ds(query, connection);
if (ds.Tables[0].Rows.Count == 0)
{
DGV_View.DataSource = null;
}
else
{
DGV_View.DataSource = ds.Tables[0];
sr_no start..
int srno = 1;
for (int i = 0; i < DGV_View.Rows.Count; i++)
{
DGV_View.Rows[i].Cells["Sr_No"].Value = srno;
srno = srno + 1;
}
}
}
Button_Click Event :
private void button2_Click(object sender, EventArgs e)
{
Frm_View_Upload_Paper_Load(null, null);
}
Reply
Answers (
4
)
dropdown box populate all values in datagridview r selected
Currency convert into words format (up to Hundred Billion. )