下面的代码运行时,当Text39满足条件时,系统只运行ALL,而没有在运行完ALL后继续运行
AReport或BReport或CReport
请问为什么?如何解决?
Option Compare Database
Private Sub 导出_Click()
。。。。。
If Text39 = "1" Then
All
AReport
ElseIf Text39 = "2" Then
All
BReport
ElseIf Text39 = "3" Then
All
CReport
End If
End Sub
Sub All()
。。。
End Sub
Sub AReport()
。。。
End Sub
Sub BReport()
。。。
End Sub
Sub CReport()
。。。
End Sub