Guest User

Untitled

a guest
Feb 20th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. LoginAgent
  2.  
  3. Description
  4. Performs the agent login automatically to the Presence system and to the phone
  5. extension in the ACD.
  6.  
  7. Parameters
  8. Parameters Type Description
  9. Login WideString Agent id
  10. Password WideString Agent's password
  11.  
  12. Return value
  13. No return value
  14.  
  15. Example
  16. Private Sub Form_Load()
  17. Dim Login As String
  18. 'Connection to Presence Agent is activated
  19. PresenceInterfaceX.Active
  20. 'connection to services 100 and 200
  21. PresenceInterfaceX.ConnectToService 100
  22. PresenceInterfaceX.ConnectToService 200
  23. 'A screen is displayed requesting the agent login
  24. Login = ObteneLogin()
  25. 'Agent gets logged in
  26. PresenceInterfaceX.LoginAgent Login, ""
  27. End Sub
Add Comment
Please, Sign In to add comment