Mdi form positioning(design?)
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?
Re: Mdi form positioning(design?)
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.