Would anyone please help me transfer data from a specific datagrid line at vb6 to a bunch of textboxes ???

welcome here. try this. I think this solve your problem.

Private Sub DataGrid1_Click()
text1.text = DataGrid1.Columns(1)
text2.text = DataGrid1.Columns(2)
text3.text = DataGrid1.Columns(3)
End Sub
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.