还是刚才那个问题,Button2.Focus
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnStart.Click
Button2.Focus() = True
End Sub
有问题,说Button2.Focus() = True
Expression is a value and therefore cannot be the target of assigment.
应该怎么改阿?
[解决办法]
Me.ActiveControl = Button2试一下。