|
-
June 18th, 2001, 09:27 PM
#1
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?
-
June 18th, 2001, 09:51 PM
#2
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.
Andy Tower
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|