User Controls

NathanSav

Member
Joined
Feb 7, 2011
Messages
7
Programming Experience
10+
Hi,

I have created a usercontrol. I would like to add one of these user controls per record in a recordset.

I have almost all the code created ready, and the control ready and available for use, however i can not find how to add the new control.

How do i go about this

I have my user control contained in a project Continuous_Form_Control1, called UserControl1.vb

Many thanks in advance.

Nathan.
 
Once you build your project, your UC is added to the Toolbox and you use it like any other control. If you want to display multiple records without a grid then I'd suggest adding a DataRepeater control to the form. You can then add your UC to the item template and you'll get your wish of one per record.
 
Back
Top