|
-
Feb 20th, 2004, 09:20 PM
#1
what does MdiLayout.ArrangeIcons do?
apprently it doesnt do anything when I call it in my MDI form...
someMDIForm.LayoutMdi(MdiLayout.ArrangeIcons)
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Feb 22nd, 2004, 04:10 PM
#2
bump
couldnt find detailed info on this, help
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Feb 22nd, 2004, 07:30 PM
#3
Frenzied Member
I'm too lazy to actually look at code right now, but if I remember correctly, arrange icons arranges the icons when your MDI children are minimized.
To say that another way, open two or more child forms, minimize them, then drag them around to rearrange. Then arrange icons and they snap to a neat arrangement.
HTH,
Mike
-
Feb 22nd, 2004, 11:54 PM
#4
Originally posted by Mike Hildner
I'm too lazy to actually look at code right now, but if I remember correctly, arrange icons arranges the icons when your MDI children are minimized.
To say that another way, open two or more child forms, minimize them, then drag them around to rearrange. Then arrange icons and they snap to a neat arrangement.
HTH,
Mike
wooh yeah exactly thank you, couldnt have figured that out on my own
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Jun 18th, 2009, 01:56 PM
#5
Lively Member
Re: what does MdiLayout.ArrangeIcons do?
 Originally Posted by MrPolite
wooh yeah exactly  thank you, couldnt have figured that out on my own
Everyone's gonna hate me for bumping a 5+ year old thread....but I have this info to add:
When forms are minimized and "arrange icons" is called it does indeed arrange the icons. BUT, so does a "cascade"....AND it has the added benefit of arranging them when they are not minimized as well.
So, for what purpose is arrange icons if the cascade function can do all the same functionality and some?
-
Jun 18th, 2009, 02:14 PM
#6
Re: what does MdiLayout.ArrangeIcons do?
cascade un-minimizes (but not maximized - WindowState = Normal) the forms and arranges them in a cascading form... arrange icons affects MINIMIZED forms... arranging them left to right, bottom to top... Arrange Icons and Cascade are different operations...
-tg
-
Jun 18th, 2009, 02:37 PM
#7
Lively Member
Re: what does MdiLayout.ArrangeIcons do?
 Originally Posted by techgnome
cascade un-minimizes (but not maximized - WindowState = Normal) the forms and arranges them in a cascading form... arrange icons affects MINIMIZED forms... arranging them left to right, bottom to top... Arrange Icons and Cascade are different operations...
-tg
on my machine cascade does not do any "un-minimizing". If you call it when they are minimized it mimics the behavior of "arrange icons". If the forms are not max size and not minimized then it cascades them for me.
Maybe I am doing something wrong then? How do I set it up where it acts like yours does? I thought I had the default environment settings....
its a simple routine that calls
Code:
Me.LayoutMdi(MdiLayout.ArrangeIcons)
so I hope I haven't messed up the code, lol
-
Jun 19th, 2009, 01:26 AM
#8
Re: what does MdiLayout.ArrangeIcons do?
Cascade appears to affect both normal and minimised windows, while ArrangeIcons affects only minimised windows. If you want to arrange your minimised windows without affecting your normal windows then you need to call ArrangeIcons.
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
|