Examples: PlayTune method

This example displays a list of sounds available on your system, then plays the user-specified sound.

Dim workspace As New NotesUIWorkspace
Dim tunes As Variant
tunes = workspace.GetListOfTunes()
Dim messagelist As String
Forall tunelist In tunes
  messagelist = messagelist & tunelist & Chr(10)
End Forall
Messagebox messagelist
Call workspace.PlayTune(Inputbox("Tune name:"))