> In C# I would do a cast. I have forgot how to do a cast in VB.Net
http://www.codeproject.com/dotnet/CheatSheetCastingNET.asp

Signature
Mark Rae
ASP.NET MVP
http://www.markrae.net
Hi,
try this code:
dim r as topheader= ctype(Page.LoadControl("\usercontrol\topheader.ascx"),
topheader)
Where topheader is the name of usercontrol class

Signature
Hope this helps.
Thanks and Regards.
Manish Bafna.
MCP and MCTS.
> Dim uc As UserControl
> uc = LoadControl("\usercontrol\topheader.ascx")
> Dim top As TopHeader
> How do I convert uc to datatype TopHeader?
> In C# I would do a cast. I have forgot how to do a cast in VB.Net