User Control

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

So if I create a user control in project A and I want to use that user control in project B, how can I re-use this component? Do I create a reference to the project A in project B? If so, I still can not drag the componet onto my form, so how do I reference it?

Thanks inadvance for your assitance!!!!
 
There isn't any good supported way to do this.
If you want a control that is easily reusable across projects, you should
create a custom control, not a user control.
Here's more info:
http://msdn.microsoft.com/library/d...l/vbconWebUserControlsVsCustomWebControls.asp

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net


Jim Heavey said:
So if I create a user control in project A and I want to use that user
control in project B, how can I re-use this component? Do I create a
reference to the project A in project B? If so, I still can not drag the
componet onto my form, so how do I reference it?
 
Back
Top