VB 窗体怎么引用UserControl下的某个控件

VB 窗体如何引用UserControl上的某个控件
比如我在一个VB工程里有:
1个UserControl用户控件  名为 UserControl1 (上面有一个叫Text1的文本控件)
1个Form窗体 名为 Form1 (上面有一个叫Command1的按钮控件)

我要在Form1里引用 UserControl1 上的 Text1怎么弄?
比如我在Form1上按下按钮 Command1 就修改Text1的文本内容,是不是如下写

Private Sub Command1_Click()
User_OCXwly.Text1.Text = "怎么样啊"
End Sub


但调试却提示“缺少对象”
到底如何写啊,高人请指点

------解决方案--------------------
在控件里,
Public Property Get Text1Text() As String
    Text1Text = Text1.Text
End Property

Public Property Let Text1Text(ByVal New_Text1Text As String)
    Text1.Text() = New_Text1Text
    PropertyChanged "Text1Text"
End Property

------解决方案--------------------
引用:
在控件里,
Public Property Get Text1Text() As String
  Text1Text = Text1.Text
End Property

Public Property Let Text1Text(ByVal New_Text1Text As String)
  Text1.Text() = New_Text1Text
  PropertyChan……


就是这样,应该将用户控件里的控件封装成接口,不一定是属性,函数也可以
Public function GetText1() As String
  GetText1 = Text1.Text
End function

Public SetText1(sNew As String)
  Text1.Text() = sNew
end function