我需要如何在我的代码中检查重复CASE
语句的解决方案。
例子:
Case "TEST1"
Dim ZR As New srv_test.frm1
ZR.ContinueInit()
ZR.MdiParent = Me
ZR.Show()
Case "TEST2"
Dim BU As New srv_test.frm2
BU.ContinueInit()
BU.MdiParent = Me
BU.Show()
Case "TEST1"
Dim ZR As New srv_test.frm1
ZR.ContinueInit()
ZR.MdiParent = Me
ZR.Show()
如您所见Case
,我的代码中有两个重复的语句,我需要以某种方式检查是否有任何重复的Case
语句,因为我的代码中有 500 多个案例并且无法手动检查。