Last active
December 14, 2015 14:38
-
-
Save facebookegypt/5101615 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'In the Module (Evry1falls.bas) | |
| 'Sliding ==> effect to end the application. | |
| Public Sub ExitEffect(Frm As Form, Espeed As Integer) | |
| While Frm.Left + Frm.Width < Screen.Width | |
| DoEvents | |
| Frm.Left = Frm.Left + Espeed | |
| Wend | |
| While Frm.Top - Frm.Height < Screen.Height | |
| DoEvents | |
| Frm.Top = Frm.Top + Espeed | |
| Wend | |
| Unload Frm | |
| End Sub | |
| Private Sub CmdEnd_Click() | |
| 'Exit the application correctly | |
| Set MainFrm = Nothing | |
| Set Display = Nothing | |
| Set CN = Nothing | |
| Set RS = Nothing | |
| ExitEffect Me, 400 | |
| End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment