ZOrder or SetChildIndex in Access

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Angus B. Atkins-Trimnell

    ZOrder or SetChildIndex in Access

    Hello all,

    I am curious as to whether there is a way to use ZOrder or SetChildIndex
    in MS Access (VBA) to place one control at the top of the Z order for
    the form (or its layer within the form) at runtime. I've been scanning
    online documentation for an API to add to my code to access either of
    these functions, but the search has been fruitless thus far.

    Any help would be greatly appreciated.

    Thanks.

    --Angus
    Angus Atkins-Trimnell
    Data Manager
    Community Outreach Intervention Projects
    University of Illinois at Chicago

    (remove _remove to reply)

  • Dimitri Furman

    #2
    Re: ZOrder or SetChildIndex in Access

    On Aug 27 2004, 11:13 am, "Angus B. Atkins-Trimnell" <trimnell@uic.e du>
    wrote in news:cgnkp1$5jl $1@newsx.cc.uic .edu:
    [color=blue]
    > Hello all,
    >
    > I am curious as to whether there is a way to use ZOrder or SetChildIndex
    > in MS Access (VBA) to place one control at the top of the Z order for
    > the form (or its layer within the form) at runtime. I've been scanning
    > online documentation for an API to add to my code to access either of
    > these functions, but the search has been fruitless thus far.[/color]

    I doubt it. Access controls are effectively nothing but bitmaps most of the
    time, and only behave as Windows controls when they have focus.

    You can fake placing a control at the top of the Z-order by simply using
    its SetFocus method, although this is probably not what you are after.

    --
    remove a 9 to reply by email

    Comment

    Working...