Questions tagged [datarepeater]

The Repeater control is used to display a repeated list of items that are bound to the control.

The Repeater control may be bound to a database table, an XML file, or another list of items.

Available for trough Visual Basic Power Packs (since version 3.0).


Also see for version of repeater.

127 questions
1
vote
0 answers

Master/Details in windows form c#

I have the master details "pattern" in a windows form. For example, I have a bill (master) with a list of items (details) the user will add. However, the user will add the items manually. In order to achieve this, I used the data repeater but it…
Rawad
  • 41
  • 3
1
vote
1 answer

How can i use DataRepeater Control in Windows Form with XML?

I've Created a data set, but i don't know how to get this work :) if anyone can help me, i will be really appreciated!
DucDigital
  • 4,580
  • 9
  • 49
  • 97
1
vote
1 answer

How to bind userControls inside a DataRepeater in Windows Forms c#?

How to bind userControls inside a DataRepeater in Windows Forms c#? I don't want to use this method: http://blogs.msdn.com/b/vsdata/archive/2009/08/12/datarepeater-control-for-windows-forms.aspx but I want to make the binding from a…
Alexa Adrian
  • 1,778
  • 2
  • 23
  • 38
1
vote
0 answers

ASP.Net Repeater with multiple HiddenFields

I am currently trying to use a repeater. There is a field that has a link button, a radio list and several hidden fields.
0
votes
1 answer

How to hide() first element in a

This is my code :
// elements
and I'd like to hide first…
markzzz
  • 47,390
  • 120
  • 299
  • 507
0
votes
3 answers

Binding list to data repeater

I am trying to bind a list to data repeater in C#. the basic code works: List arrlist = new List(); arrlist.Add("item 1"); arrlist.Add("item 2"); arrlist.Add("item 3"); arrlist.Add("item 4"); arrlist.Add("item…
0
votes
2 answers

ASP.NET Find DropDown Value Inside Repeater Control Part II

ive had a few questions on this subject, still having problems. I want to find the values from a number of dropdown and textbox controls inside a repeater control. db.ConnectionString = SystemConnString db.Open() Dim selectedAdTitle As…
Mark
0
votes
1 answer

VB.NET Repeater Simple Data Binding Without Datasource

Im a ASP.NET beginner. I previously asked how to do some databinding to a repeater without a datasourse. Here. VB.NET Repeater Simple Data Binding Without Datasource here is the solution someone got for me Dim repeatTimes((TotalAdInsured)) As…
Mark
0
votes
2 answers

DataRepeater _ItemCommand event stops firing after a while

Ok this is the weirdest thing I have seen in a while... I am using VS studio 2010 to build a asp.net (framework 4.0) website. My code behind is in VB.Net, My testing browser is Firefox (latest version), also tested on IE8 and Google Chrome, same…
0
votes
2 answers

Powerpacks DataRepeater Control - Image not getting loaded in picture box

I have a winform powerpacks datareapter control having a picture box. This is the code snippet from the classes. DisplaySystemUsersControl.Designer.cs this.picBoxUserImage.BorderStyle =…
mlg
  • 1,162
  • 1
  • 14
  • 32
0
votes
1 answer

Displaying records in multiple rows - Visual Basic Power Packs DataRepeater control

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…
mlg
  • 1,162
  • 1
  • 14
  • 32
0
votes
1 answer

Finding a dynamically added control in a third nested repeater

I have three repeaters. Lets call them R1, R2 and R3. In R3, I create a bunch of controls in Page_Init. For example, one of those controls has the name WMC_image. Im using this code to get…
midnightsyntax
  • 409
  • 4
  • 15
0
votes
2 answers

textboxes in Datarepeater dynamically 'databound'

I need to know if it is possible to dynamically bind a textbox residing within a datarepeater to a 'dynamically' created BindingSource. I am using VB.net. The database I am using is a MySQL database. I have to use the connection dynamically due…
the_only.badman
0
votes
1 answer

Get checked status of radio buttons in a Data Repeater

I have a Data Repeater in a Windows Form, within the data repeater I have a label and either a radio button or combo box, the amount of radio buttons and the text for them is brought in from my database as is the label and combo box. The label is a…
willj12
  • 1
  • 1
0
votes
2 answers

Label text in datarepeater

I am trying to use a label in my datarepeater, when I am able to bind data and write to me html page. <%# DataBinder.Eval(Container.DataItem, "ID")%> which works fine. When I try to get text value I…
Dedrick
  • 187
  • 1
  • 11
1 2 3
8 9