DATAGRID PARA TEXTBOX

GUIMANCINE 15/10/2014 15:28:53
#441944
Boa Tarde Moçada.
Estou com uma duvida de como jogar os dados de um datagrid para os textbox.

Por exemplo:
Tenho um DATAGRID com 3 colunas (HORA PREÇO DATA)
Preenchi o DATAGRID com varias linhas e ficou assim:
HORA PREÇO DATA
12:00 R$2,00 15/10/2014
15:00 R$4,00 15/10/2014
16:00 R$14,00 15/10/2014

Queria pegar esses dados e jogar em TEXTBOX como eu faço?
JONATHANSTECKER 15/10/2014 16:01:32
#441947
Resposta escolhida
Seria basicamente isso...

        Dim Linha As Integer = 0

Dim Texto01 As String = DataGridView1.Rows(Linha).Cells(0).Value & [Ô] - [Ô] & _
DataGridView1.Rows(Linha).Cells(1).Value & [Ô] - [Ô] & _
DataGridView1.Rows(Linha).Cells(2).Value
TextBox1.Text = Texto01

Linha = 1
Dim Texto02 As String = DataGridView1.Rows(Linha).Cells(0).Value & [Ô] - [Ô] & _
DataGridView1.Rows(Linha).Cells(1).Value & [Ô] - [Ô] & _
DataGridView1.Rows(Linha).Cells(2).Value
TextBox2.Text = Texto02

Linha = 2
Dim Texto03 As String = DataGridView1.Rows(Linha).Cells(0).Value & [Ô] - [Ô] & _
DataGridView1.Rows(Linha).Cells(1).Value & [Ô] - [Ô] & _
DataGridView1.Rows(Linha).Cells(2).Value
TextBox3.Text = Texto03
Tópico encerrado , respostas não são mais permitidas