Click here to Skip to main content
16,021,004 members

Comments by nguwar (Top 4 by date)

nguwar 26-Jul-12 5:13am View    
um, i'm not sure whether you've already checked this link or not. It has a lot of solution regarding about "dropdownlist selectedchanged event not firing". http://social.msdn.microsoft.com/Forums/en-US/winformsdesigner/thread/c1f66568-1ece-483c-969c-6dc66ea77c49/
nguwar 26-Jul-12 4:36am View    
don't give readonly=true in datagridivew properties, also in row template.
nguwar 26-Jul-12 4:25am View    
I assume you want to add to another datatable?
Here is the example.
int id = 0;
string value = "";
DataTable dt = new DataTable("myTable");
dt.Columns.Add("ID");
dt.Columns.Add("Value");
dt.Rows.Add(id, value);
nguwar 26-Jul-12 4:10am View    
you should try to use onFocus event instead of onClick event. here is the link, http://forums.asp.net/t/1751171.aspx/1