Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
Bilancio familiare - frmDownload.frm

frmDownload.frm

Caricato da: Roberto VB
Scarica il programma completo

  1. Private Sub cmdChiudi_Click()
  2.     Unload Me
  3. End Sub
  4.  
  5. Private Sub Form_Load()
  6.  
  7. End Sub
  8.  
  9. Private Sub mnuChiudi_Click()
  10.     frmDownload.Hide
  11. End Sub
  12.  
  13. Private Sub Timer2_Timer()
  14. Static Stat As Boolean
  15.     If Stat = False Then
  16.         Image1.Picture = LoadPicture(App.Path & "/1.bmp")
  17.         Stat = True
  18.         Exit Sub
  19.     ElseIf Stat = True Then
  20.         Image1.Picture = LoadPicture(App.Path & "/2.bmp")
  21.         Stat = False
  22.         Exit Sub
  23.     End If
  24. End Sub