Advertisement
Guest User

Untitled

a guest
Apr 21st, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Private Sub Form_Current()
  2.  
  3. Me.Caption = [Nazwisko] & " " & [Imie]
  4.  
  5. If (IsNull(Zdjecie)) Then
  6. Me.Zdjecie.Visible = False
  7. Else: Me.Zdjecie.Visible = True
  8. End If
  9.  
  10. End Sub
  11.  
  12. Private Sub Form_Load()
  13.  
  14. [Clock].[Caption] = Time
  15.  
  16. End Sub
  17.  
  18. Private Sub Form_Timer()
  19.  
  20. [Clock].[Caption] = Time
  21.  
  22. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement