1

I have 2 textBoxes inside WinForms DataRepeater (Microsoft.VisualBasic.PowerPacks.DataRepeater) and a button

When the button is clicked, I want to access these textBoxes

How can I achieve this?

ASh
  • 34,632
  • 9
  • 60
  • 82
techBeginner
  • 3,792
  • 11
  • 43
  • 59

1 Answers1

4
dataRepeater1.CurrentItem.Controls["TextBox1"].Text
techBeginner
  • 3,792
  • 11
  • 43
  • 59