Hi all,
I have several user controls I have created, (first time using User Controls). It seems that if you drag & drop the control on a form, the control is not updated if a change is made to the user control. Is it possible to add the control to the main form programmatically? I want to make sure that if I make a change to the user control, the change will show on my main form.
Any feedback is greatly appreciated.
Regards,
MDA
FYI Code that shows in VB generated code:
Friend WithEvents InteriorForm1 As MetaWizard.InteriorForm
Me.InteriorForm1.BackColor = System.Drawing.SystemColors.Control
Me.InteriorForm1.Location = New System.Drawing.Point(0, 0)
Me.InteriorForm1.Name = "InteriorForm1"
Me.InteriorForm1.Size = New System.Drawing.Size(497, 313)
Me.InteriorForm1.TabIndex = 15
Me.InteriorForm1.Visible = False
I have several user controls I have created, (first time using User Controls). It seems that if you drag & drop the control on a form, the control is not updated if a change is made to the user control. Is it possible to add the control to the main form programmatically? I want to make sure that if I make a change to the user control, the change will show on my main form.
Any feedback is greatly appreciated.
Regards,
MDA
FYI Code that shows in VB generated code:
Friend WithEvents InteriorForm1 As MetaWizard.InteriorForm
Me.InteriorForm1.BackColor = System.Drawing.SystemColors.Control
Me.InteriorForm1.Location = New System.Drawing.Point(0, 0)
Me.InteriorForm1.Name = "InteriorForm1"
Me.InteriorForm1.Size = New System.Drawing.Size(497, 313)
Me.InteriorForm1.TabIndex = 15
Me.InteriorForm1.Visible = False