cụ thể là ví dụ có text "abcd" có file a.wav, b.wav, c.wav, d.wav và ... rất nhiều, khi chạy new sound player.
Ví dụ 1 hàm
sub doctext(byval text as string, delay as integer)
dim i as integer
for i =0 to text.lenght-1
select case text(i)
case "a"
my.computer.audio.play(..."\a.wav")
threading.thread.sleep(delay)
case "b"
my.computer.audio.play(..."\b.wav")
threading.thread.sleep(delay)
.....
next
khi text có nhiều kí tự thì chương trình sẽ treo cho đến khi đọc xong hết các từ.
có cách nào khi text đang đọc mình vẫn thao tác được với form không?