views:

117

answers:

1

In winforms there is a function "BringToFront" that moves a form to the top of the Z-Order. Is there a way to do the opposite--push a form to the back?

+5  A: 

Use: Form.SendToBack()

rein
Thanks I knew there had to be an option, but there are so many functions in windows.forms.form that finding it was becoming not so fun very fast! Appreciate it.
Jeff
You could have searched for "back" in the member overview :) It's true though that "Bring" and "Send" are not really good choices.
OregonGhost