GetPhonetic Method Example

This example displays all of the possible phonetic text strings from the specified string.

strPhoText = Application.GetPhonetic("junkojunko")
While strPhoText <> ""
    MsgBox strPhoText
    strPhoText = Application.GetPhonetic()
Wend