Applies To
SoundNote Object.
Description
Displays the Record dialog box so you can record a sound note.
Syntax
object.Record
object
Required. The SoundNote object.
Remarks
To record sounds, you must have sound hardware installed in your computer. You cannot record a sound note to a cell that already has one; you must delete the existing sound note before recording a new one.
See Also
Play 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