Guest User

Untitled

a guest
Feb 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. ' Growl for windows test script(VBA)
  2. Sub growling()
  3. Dim growler As Vortex_Growl_Framework.Growl
  4.  
  5. Set growler = New Growl
  6. growler.ApplicationName = "Test VBA Script"
  7.  
  8. Dim notify As New Vortex_Growl_Framework.NotificationType
  9. notify.Enabled = True
  10. notify.Name = "testNotify"
  11.  
  12. Dim notifies(0) As Vortex_Growl_Framework.NotificationType
  13. Set notifies(0) = notify
  14.  
  15. growler.Register notifies
  16.  
  17. growler.notify _
  18. notify, _
  19. "Test", _
  20. "This is test. Can you see me?", _
  21. Priority_Normal, _
  22. False
  23. End Sub
Add Comment
Please, Sign In to add comment