我叫Alex,我是VB新手。我很抱歉,但我沒有主題。我只有一個問題:任何人都可以嘗試引導我進入鏈接(或直接解釋)以更好地瞭解Visual Basic標籤的工作方式?我需要了解標籤和變量之間的區別以及我們如何使用標籤。到目前爲止,我只使用freebasic進行一些小型編程(構建一個小型計算器等),我真的會讚賞你的答案。現在我正在使用Visual Studio 2010,我正在學習一些教程,它們只是給我提供了一些代碼,而沒有解釋一切是如何工作的。例如,在構建計算器教程中使用此代碼爲等號「=」:如何在VB 2010中使用標籤?
If Label2.Text > "" And Label2.Text = "+" Then
Button1.Text = Val(Label1.Text) + Val(Button1.Text)
Label3.Text = Button1.Text
ElseIf Label2.Text > "" And Label2.Text = "-" Then
Button1.Text = Val(Label1.Text) - Val(Button1.Text)
Label3.Text = Button1.Text
ElseIf Label2.Text > "" And Label2.Text = "*" Then
Button1.Text = Val(Label1.Text) * Val(Button1.Text)
Label3.Text = Button1.Text
ElseIf Label2.Text > "" And Label2.Text = "/" Then
Button1.Text = Val(Label1.Text)/Val(Button1.Text)
Label3.Text = Button1.Text
Else
End If
[Visual Basic入門](http://msdn.microsoft.com/en-us/vbasic/bb466159) - 可能是開始尋找更好的教程的好地方。 – 2011-02-28 08:18:12