Bring to Front

  • Thread starter Thread starter Nicholas
  • Start date Start date
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?
 
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
 
Back
Top