Not a Member Yet,
Click here to Register

ID: 129
Viewed: 2950
Added: Apr 28, 2002
Version:
Snippet uploaded by: snippet
Written By: unknown
Demo: Sorry, no demo



User Rated at: 0 Stars
Rate This:

Thank you for your vote. Please wait...

It appears you already voted for this snippet

It appears your vote value was empty

Windows API Guide: CopyRect Function Platforms: Win 32s, Win 95/98, Win NT CopyRect sets one rectangle equal to another. This is done by duplicating all of the source rectangle's member values to the corresponding ones in the target rectangle. This is faster than setting all four values manually in your code. The function returns 0 if an error occured, or 1 if successful. lpDestRectThe target rectangle to set. lpSourceRectThe source rectangle.

Highlight all by clicking in box
<!---Declaration--->
none

Highlight All
<!---Code--->
'Example:
' Set the source and target rectangels equal to the rectangle
' of the window by copying the source to the target
Dim source As RECT, target As RECT ' source & target rectangles
Dim retval As Long ' return value
' Get the rectangle of Form1 into source
retval = GetWindowRect(Form1.hWnd, source)
' Copy source into target
retval = CopyRect(target, source);


No Comments to show

Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.


Replying to a Comment...


Adding your comment. Please wait...

Thanks for adding your comment!. After further review it will be added.

There was a problem adding your comment. Please try again.

Please complete all the fields in the form before sending.

© 2002 - 2024 snippetlibrary.com All Rights Reserved. Conditions
Do NOT follow this link or you will be banned from the site!