共用方式為


Visual Basic 6.0 使用者可用的控制陳述式

更新:2007 年 11 月

Visual Basic 2008 會更新數個可控制執行流程的陳述式。

Visual Basic 6.0

在 Visual Basic 6.0 中,GoSub 陳述式在程序內呼叫子程序。On ... GoSub 和 On ... GoTo 建構 (也被稱為計算式 GoSub 及計算式 GoTo),則提供與早期 BASIC 版本的相容性。

While ... Wend 建構會在指定條件成立時,透過程式碼作迴圈處理。

Visual Basic 2008

在 Visual Basic 2008 中,您可以使用 Call 陳述式來呼叫程序,但不支援 GoSub 陳述式。您可以使用 Select...Case 陳述式執行多重分支,但不支援 On ... GoSub 和 On ... GoTo 建構。但是,Visual Basic 2008 仍支援 On Error 陳述式。

Visual Basic 2008 會保留 While ... Wend 建構,但改用 End 陳述式來取代 Wend 關鍵字。Wend 關鍵字不被支援。

請參閱

概念

Visual Basic 6.0 使用者可用的程序呼叫順序

程式設計項目的支援變更摘要

參考

Call 陳述式 (Visual Basic)

Function 陳述式 (Visual Basic)

Sub 陳述式 (Visual Basic)

Return 陳述式 (Visual Basic)

Select...Case 陳述式 (Visual Basic)

On Error 陳述式 (Visual Basic)

End 陳述式