tags:

views:

60

answers:

1

How to make a form as bottom most form in vb.Net 2008

A: 

Assuming that you're talking about the z-order, try Control.SendToBack (Form inherits from Control so will also have this method). See here for doc:

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.sendtoback%28VS.71%29.aspx

ho1