Advertisement
veronikaaa86

6. Познай паролата

Dec 23rd, 2021
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. Sub Demo()
  2. Dim inputText As String
  3. inputText = "s3cr3t!P@ssw0rd"
  4.  
  5. Dim result As String
  6. If inputText = "s3cr3t!P@ssw0rd" Then
  7. result = "Welcome"
  8. Else
  9. result = "Wrong password!"
  10. End If
  11.  
  12. Debug.Print result
  13. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement