Reply

alice johnson replied to Dharma K at 05-Jul-08 03:56
linking textbox to cell in a datagridview cell:
Private Sub DataGridView1_RowPostPaint(ByVal sender As Object, ByVal e
As System.Windows.Forms.DataGridViewRowPostPaintEvent Args) Handles
DataGridView1.RowPostPaint
If Not IsDBNull(DataGridView1.CurrentRow.Cells(17).Value) Then
TextBox1.Text = DataGridView1.CurrentRow.Cells(17).Value
End If
End Sub

Click here to sign in and reply. You could earn money via our $500 contest just for being helpful.
  Enter the from textbox text to dispaly datagridview - Dharma K  05-Jul-08 03:25 3:25:33 AM
      Reply - alice johnson  05-Jul-08 03:56 3:56:33 AM
      try this.... - Vasanthakumar D  05-Jul-08 04:20 4:20:58 AM
          Thank u Vasanth...Thanks to all - Dharma K  05-Jul-08 08:08 8:08:03 AM
      See this - Sujit Patil  05-Jul-08 04:34 4:34:52 AM
          Thanks Sujit - Dharma K  05-Jul-08 08:08 8:08:43 AM
      Re : Enter the from textbox text to dispaly datagridview - Ashutosh Dhok  05-Jul-08 06:38 6:38:30 AM
View Posts