Using Speechlib object in VFP9 I´d instantiate it as
loVoice = CREATEOBJECT("SAPI.SpVoice.1")
This object has members methods which I need to use in order to highlight
spoken words in an editvox.
Specifically methods WORD (StreamNum , StreamPos , Pos , Length ) returns
in the two last params the positions to write the statements
PROCEDURE highlightspokenwords
PARAMETERS pos, lenght
ThisForm.MaintextBox.SelStart= pos
ThisForm.MaintextBox.SelLength=lenght
ENDPROC
My question is : How to implement the WORD method after creating the
object?
Thanks
Alejandro Fernandez<