说明: This SimpleTTS sample application demonstrates how to create a SpVoice objectand, how to use it to speak text and save it to a .wav file. (这个实例展示了在VB里如何创建一个SpVoice 对象去朗读文本并将语音保存为一个.wav文件) PS:官方实例,内有较多英文注释;简单明了的实例,适合初学者参考。 <csdw911> 在 上传 | 大小:8192
说明: 删除空余行: Dim LastRow As Long, r As Long LastRow = ActiveSheet.UsedRange.Rows.Count LastRow = LastRow + ActiveSheet.UsedRange.Row -1 For r = LastRow To 1 Step -1 If WorksheetFunction.CountA(Rows(r)) = 0 Then Rows(r).Delete Next r 删除空余列: Dim LastColumn <weixin_42230322> 在 上传 | 大小:8192