VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Explode effects

by Waty Thierry (60 Submissions)
Category: Custom Controls/Forms/Menus
Compatability: Visual Basic 4.0 (32-bit)
Difficulty: Unknown Difficulty
Originally Published: Tue 30th March 1999
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Explode effects

Rate Explode effects



' * Programmer Name  : Waty Thierry
' * Web Site         : www.geocities.com/ResearchTriangle/6311/
' * E-Mail           : [email protected]
' * Date             : 13/10/98
' * Time             : 10:24
' * Module Name      : Form_Module
' * Module Filename  : Form.bas
' **********************************************************************
' * Comments         : Explode effects
' *
' **********************************************************************

Sub Explode(frm As Form)
   frm.Width = 0
   frm.Height = 0
   frm.Show
   For x = 0 To 5000 Step 250
      frm.Width = x
      frm.Height = x
      With frm
         .Left = (Screen.Width - .Width) / 2
         .Top = (Screen.Height - .Height) / 2
      End With
   Next x
End Sub


Download this snippet    Add to My Saved Code

Explode effects Comments

No comments have been posted about Explode effects. Why not be the first to post a comment about Explode effects.

Post your comment

Subject:
Message:
0/1000 characters