I am developing an application using Visual Basic Power Packs DataRepeater control. For this application, I need to display records in rows. I will have a Image, Textbox and a checkbox for repeater control. I need to display 3 repeater control in one row. Say, If we have 12 records, I need to display it as 4 rows of 3 records.
I would like to display records as in the picture. Can anybody please help me on this?
I think you’re asking the following range of questions here:
How to show pictures, checkbox and textbox in each row in a datarepeater control?
Display the controls in a certain arrangement?
Show pictures base don values selected in the checkbox or textbox.
I’m no expert but the way I did was:
Use the following code to control which pictures the pictureboxes on your repater will point to
Private Sub DataRepeater1_DrawItem(sender As Object, e As PowerPacks.DataRepeaterItemEventArgs) Handles DataRepeater1.DrawItem
Dim pic As PictureBox = CType(e.DataRepeaterItem.Controls("PictureBox1"), System.Windows.Forms.PictureBox)
Dim txt As TextBox = CType(e.DataRepeaterItem.Controls("txtBox1"), System.Windows.Forms.TextBox)
Pic.ImageLocation = txt.Text
End Sub