Q: How to make a specific child-form always on top-most ?
Would you tell me how to make a specific child-form always on top-most position in an MDI environment? In SDI, it was possible by using the SetWindowPos API call but it did not work in the MDI. So I used 'Zorder' to make a child-form to be on top-most position, but in that case, the other child-form couldn't be enabled and the only form where 'Zorder' applied was always enabled. Please let me know how I can solve this problem.
Jay Yang from Seoul, Korea KOWACO48@chollian.net

A: Why don't you make that form a modeless form? Try the example on the site.. And you can set that form on top with another example

http://www.kather.net/VisualBasicSource/vb4ModelessForms.txt http://www.kather.net/VisualBasicSource/vb4stayontop.txt Return