vb调用sub过程
发布网友
发布时间:2022-05-27 01:55
我来回答
共3个回答
热心网友
时间:2024-11-24 21:50
Private Sub Command2_Click()
Dim n As Integer
s1 = val(Text1.Text) '这么改
s2 = val(Text2.Text) '这么改
Call sel1(0, s1) '播放复读的前面部分
num = val(Text3.Text) '这么改
For n = 1 To num 'num必须比1大才能执行下面的call
Call sel2(s1, s2) '播放复读部分
Next n
Call sel3(s2) '播放复读的后面部分
End Sub
call完一个,再call一个。
热心网友
时间:2024-11-24 21:50
直接执行sel3说明前面的sel1和sel2没起作用。查看一下这两个过程。
热心网友
时间:2024-11-24 21:51
不知道sel1、sel2、sel3的代码是什么,也许过程本色有错。