expression.WindowLocation As Point
where expression is a variable that represents a Frame Object
expression.WindowLocation As Point
Sub Sample_Frame_WindowLocation() Dim point As Attachmate_Reflection_Objects.point Set point = ThisFrame.WindowLocation MsgBox ("The x and y coordinates of the Reflection Desktop are: " & Str(point.x) & ", " & Str(point.y)) End Sub