Sorry if you miss understood. Setting the x y coordinate on the creation of the floating control work correctly. But retrieving the current x y coordinate i did find a small problem. I created a new docking control in memory, and a new DockingTab in memory. Placed a tab into the dockingtab control and then places that control into the new docking control, and set that to floating. But when i make reference to that docking control the x y coordinate it gives me is 0 0. But if I go to that tab that in on those controls and go to its parent parent then i get the correct x y coordinate.
Dim dockflot As New C1.Win.C1Command.C1CommandDock
Dim tabcontrol As New C1.Win.C1Command.C1DockingTab
tabcontrol.Controls.Add(Me.C1DockingTabPage2)
dockflot.DockOrFloatChild(tabcontrol, New Point(345, 262))
tabcontrol.Location.X returns 0
tabcontrol.Location.Y returns 0
C1DockingTabPage2.Parent.Parent.Location.X returns 345
C1DockingTabPage2.Parent.Parent.Location.y returns 262
Thanks.