Click to See Complete Forum and Search --> : Mdi form positioning(design?)


SungSoo Shin
June 18th, 2001, 09:27 PM
hellow together!

I have one problem to make mdi form design.
i wanna design look like under

-----------------------------------------------------
| tool bar |
| |
-----------------------------------------------------
| | |
| tree | fixed form |
| view | |
| |---------------------------------------------|
| |mdi child here! |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
-----------------------------------------------------

tool bar and tree view is possible but fixed form(or picture box)
not fix like that.

no ways here?

Tower
June 18th, 2001, 09:51 PM
private Sub MDIForm_Load()
Form1.Left = 1000
Form1.Top = 1000
End Sub

private Sub MDIForm_Resize()
Form1.Left = 1000
Form1.Top = 1000
End Sub



This code fix Form1 into MDIForm.