我在验证一组单选按钮时遇到了困难,这是我现在正在使用的代码,但我不断收到错误消息:Runtime error 438 - Object doesn't support this property or method
.
这是导致问题的代码。
For Each ctl In Me.frPriority.Controls
If ctl.Value = True Then GoTo nxtCheck1
Next
MsgBox "You didn't select a priority"
Exit Sub
nxtCheck1:
造成所有麻烦的线路是
If ctl.Value = True Then
我该如何解决这个问题?