ghostdog_alex Posted January 14, 2010 Posted January 14, 2010 Hi there. I have a datagridview with 3 columns: Simbol, Denumire, Functie. Can i add the text from a textbox in the rows under each column. I mean i have 3 textbox named txt_simbol, txt_denumire and txt_functie and i want to add the text from txt_simbol to Simbol row and so on... Thanks, Alexandru Vint. Quote
hamid Posted May 28, 2010 Posted May 28, 2010 your question is not clear but I give you some point about datagridview you could change value of datagridview cell at row number R and column number C with: dataGridView1[C, R].Value = "some value"; or dataGridView["columnName", R].Value dataGridView1["columnSimbol",0].Value=txt_simbol.Text; Quote [ once4ever ]
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.