PRB: Can't Use DOCKED or DOCKPOSITION Props to Dock a Toolbar

Last reviewed: April 30, 1996
Article ID: Q128077
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, version 3.0

SYMPTOMS

When the value of the DOCKED or DOCKPOSITION properties is modified to dock a toolbar, the toolbar position does not change.

CAUSE

This behavior is by design. The DOCKED and DOCKPOSITION properties are indicators of where a toolbar is located. They are Read Only properties and modifying their value will not affect the toolbar.

RESOLUTION

Use the DOCK method to dock a toolbar along any border of the main FoxPro window. The following code demonstrates how to use the DOCK method:

   oToolbar1=CREATEOBJECT('cToolbar')
   oToolbar1.Show
   = Messagebox("Moving the Toolbar")
   oToolbar1.Dock(0)
   = Messagebox( "Top")
   oToolbar1.Dock(1)
   =Messagebox( "Left")
   oToolbar1.Dock(3)
   =Messagebox( "Bottom")
   oToolbar1.Dock(2)
   =Messagebox( "Right")

   DEFINE CLASS cToolbar AS TOOLBAR
     Scalemode = 1
     * Make this a control array
     DIMENSION cmdim(3)
     ADD OBJECT cmdim(1) as CommandButton WITH caption = "One", Left =1
     ADD OBJECT cmdim(2) as CommandButton WITH caption= "Two", Left =10
     ADD OBJECT cmdim(3) as CommandButton WITH caption = "Three",Left= 15
   ENDDEFINE

STATUS

This behavior is by design.


Additional reference words: 3.00 VFoxWin
KBCategory: kbprg kbcode
KBSubcategory: FxprgGeneral


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: April 30, 1996
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.