Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

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.

  • 4 months later...
Posted

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;

[ once4ever ]

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...