我在DataColChanged事件中写了如下代码,为何有的行朗读,有的行就不朗读,请老师们帮忙。
If e.DataCol.Name = "客户名称" Then '如果正在输入的是客户名称列 If e.NewValue > "" Then '如果已经输入内容 Dim sp As New DotNetSpeech.SpVoice() sp.rate = -3 sp.Speak(e.NewValue, DotNetSpeech.SpeechVoiceSpeakFlags.SVSFlagsAsync) End IfEnd If