Skip to content

Instantly share code, notes, and snippets.

@facebookegypt
Last active December 14, 2015 14:38
Show Gist options
  • Select an option

  • Save facebookegypt/5101615 to your computer and use it in GitHub Desktop.

Select an option

Save facebookegypt/5101615 to your computer and use it in GitHub Desktop.
'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