Ok, In my code of my activex control, I want to be able to get the .Left & .Top properties of itself on the form.

Like say in the UserControl_Initialize() method.....
Code:
Private Sub UserControl_Initialize()
    Dim nTop as Integer, nLeft as Integer

    nTop = Me.Top
    nLeft = Me.Left
End Sub
.... except Top & Left properties dont exist.... So how do I get the top and left props? :/