VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Cool screen wipes

by VB Pro (6 Submissions)
Category: Custom Controls/Forms/Menus
Compatability: Visual Basic 3.0
Difficulty: Unknown Difficulty
Date Added: Wed 3rd February 2021
Rating: (107 Votes)

You can achieve some cool form wipes with judicious use of the Move method. For example, to draw a curtain from right to left use this routine. It is also possible to wipe a form from bottom to top, and from both sides to the middle, using similar routines

Rate Cool screen wipes

Sub WipeRight (Lt%, Tp%, frm As Form)
Dim s, Wx, Hx, i
s = 90 'number of steps to use in the wipe
Wx = frm.Width / s 'size of vertical steps
Hx = frm.Height / s 'size of horizontal steps
' top and left are static 
' while the width gradually shrinks
For i = 1 To s - 1
frm.Move Lt, Tp, frm.Width - Wx
Next
End Sub


Call the routine from a command button by using this code: 

L = Me.Left
T = Me.Top
WipeRight L, T, Me

Download this snippet    Add to My Saved Code

Cool screen wipes Comments

No comments have been posted about Cool screen wipes. Why not be the first to post a comment about Cool screen wipes.

Post your comment

Subject:
Message:
0/1000 characters