Bring to Front

N

Nicholas

Is there any way to mimic the MS Access bring to
front/send to back action using code? Douglas J. Steele
responded the ZORDER() function is not available in
Access. Any other way to manipulate a form object in this
fashion?
 
R

Rick Brandt

Nicholas said:
Is there any way to mimic the MS Access bring to
front/send to back action using code? Douglas J. Steele
responded the ZORDER() function is not available in
Access. Any other way to manipulate a form object in this
fashion?

DoCmd.RunCommand acCmdBringToFront
DoCmd.RunCommand acCmdSendToBack
 
Top