Alternate ShrinkFormUnload
Posted: 2002-06-01
By: ArchiveBot
Viewed: 52
Filed Under:
No attachments for this post
Shrink Window on Unload
Original Author: Tim Markoski
Code
Public Sub SqueezeWindow_FormUnload(p_FrmCurrent As Form, p_dblIncrement As Double)
' Comments :
' Parameters: p_FrmCurrent
' p_dblIncrement -
' Modified :
'
' -------------------------------
On Error GoTo PROC_ERR
Do While (p_FrmCurrent.Height > 405 Or p_FrmCurrent.Width > 1680)
p_FrmCurrent.Height = p_FrmCurrent.Height - p_dblIncrement
p_FrmCurrent.Width = p_FrmCurrent.Width - p_dblIncrement
DoEvents
Loop
DoEvents
PROC_EXIT:
p_FrmCurrent.Hide
DoEvents
Unload p_FrmCurrent
Exit Sub
PROC_ERR:
MsgBox Err.Description
Resume PROC_EXIT
End Sub
Comments on this post
No comments have been added for this post.
You must be logged in to make a comment.