Ca donne ca :
System.Web.UI.UserControl UC;
UC = UC.LoadControl("path//uc.ascx");
j'avais un projet C# d'ouvert mais en VB c'est la meme chose ou
presque. UC.LoadControl est de type UserControl si tu veux UC du bon
type par exemple tu as
file.ascx.vb
public class MyUC inherits usercontrol
end class
dim uc as MyUC
uc = ctype(uc.loadControl("path/file.ascx"), MyUC)
Normalement c'est bon
Cyril