How to Bring an Overlapping Image to the Foreground

Last reviewed: December 1, 1995
Article ID: Q140305
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, version 3.0

SUMMARY

If two or more images are overlapping on a form, you can use the technique presented in this article to bring one of the images forward based on a mouse click.

MORE INFORMATION

The basic theory behind this is if two or more pictures overlap and the user clicks on an image, the image clicked will come to the front. This can be accomplished with the Zorder() method.

In the Click event of each image add the following code:

   THIS.ZOrder(0)

Setting the Zorder() with a zero will make the object come to the front of the zorder in its graphical level. The zero can be left out of the code because it is the default value.


Additional reference words: 3.00 VFoxWin
KBCategory: kbprg kbhowto
KBSubcategory: FxprgClassoop


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: December 1, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.