Applies To
SoundNote Object.
Description
Plays the sound note.
Syntax
object.Play
object
Required. The SoundNote object.
Remarks
To play sounds, you must have sound hardware installed in your computer.
See Also
Record Method.
Example
This example deletes the sound note in cell A1 on Sheet1, records a new sound note for the same cell, and then plays the sound note.
With Worksheets("Sheet1").Range("A1").SoundNote .Delete .Record .Play End With