在VB中,可以使用以下幾種方法清空Label控件的內容:
Label1.Text = ""
Label1.Text = String.Empty
Label1.ResetText()
其中,Label1是要清空內容的Label控件的名稱。