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