I'm trying to get the value of a global variable form a activeX control used in a datarepeater control. Basicaly when i click on a text box in the datarepeater control, I want to msgbox the global variable from the form.
Printable View
I'm trying to get the value of a global variable form a activeX control used in a datarepeater control. Basicaly when i click on a text box in the datarepeater control, I want to msgbox the global variable from the form.
What is a datarepeater control? Is this a VB.NET question?
This is in VB6. The DataRepeater control functions as a data-bound container of any user control you create. For example, imagine creating a user control that contains three TextBox controls, and a CheckBox control. This user control is designed to show one record of an employee database — displaying name, birth date, employee number, and marital status of the employee.
After compiling the control into an .ocx, the DataRepeater control's RepeatedControlName property is set to the user control. The DataRepeater is then bound to a data source, such as the ADO Data Control, which sets up a connection between the user control and the employee database. At run time, the DataRepeater displays several instances of the user control—each in its own row, and each bound to a different record in the database. The result can resemble the figure below.
Records Repeated in DataRepeater Control
sounds like how access creates a "table view" form...(or sheet view? or..whatever)
each "row" is its own set of textboxes, and connected to its own rown in the table