,當我想在Select Case
定義值,我得到錯誤:vb.net選擇案例錯誤
'Value' is not declared. It may be inaccessible due to its protection level.
當Dim Value As Object
超出選擇案例 - 沒有錯誤。我的目標是根據特殊數字獲得不同的價值。例如:
Select Case Integer
Case 1
Dim Value As New UserControl1
Case 2
Dim Value As New UserControl2
Case Else
Dim Value As New UserControl3
End Select
查看vb範圍規則。在select塊中聲明的變量將被限制在select塊中。 –
我不會命名一個變量'Value',特別是它是一個Object;很混亂。 –