|
|
|
The Windows API provides an handy function that lets you cascade all the child windows of another window with one single call. The effect of this function is similar to the Cascade Windows command in most MDI apps, except the parent window doesn't have to be an MDI window.
This is the (incorrect) Declare that the API Viewer utility provides: |
Click here to copy the following block | Private Declare Function CascadeWindows Lib "user32" Alias "CascadeWindows" _ (ByVal hwndParent As Long, ByVal wHow As Long, ByVal lpRect As RECT, _ ByVal cKids As Long, lpkids As Long) As Integer |
You see that this Declare is incorrect, because it declares the lpRect As RECT argument using ByVal, which is invalid in VB. Here's the correct Declare: |
Click here to copy the following block | Private Declare Function CascadeWindows Lib "user32" Alias "CascadeWindows" _ (ByVal hwndParent As Long, ByVal wHow As Long, ByVal lpRect As Long, _ ByVal cKids As Long, lpkids As Long) As Integer |
You can cascade all the top-level windows in your system by passing all zero arguments: |
Or you can cascade only the child windows of a given window by passing its handle as the first argument.
|
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|