devxlogo

Cool Screen Wipes

You can achieve some cool form wipes with judicious use of the Movemethod. For example, to draw a curtain from right to left use this routine:

 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	NextEnd Sub

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

 L = Me.LeftT = Me.TopWipeRight L, T, Me

It is also possible to wipe a form from bottom to top, and from bothsides to the middle, using similar routines.

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  How Seasoned Architects Evaluate New Tech

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.