我在自學VB,試圖調用子Main()
但是,當我在End Sub
之後包含語法錯誤,並且在沒有調用的情況下運行它時,沒有任何反應。請你能向我解釋我做錯了什麼,以及如何打電話給我。我怎樣稱呼小組?
Imports System.IO
Public Class Form1
Sub Main()
HouseCalc(99800, 43100)
Call HouseCalc(380950, 49500)
End Sub
Sub HouseCalc(price As Single, wage As Single)
If 2.5 * wage <= 0.8 * price Then
MsgBox("You cannot afford this house.")
Else
MsgBox("This house is affordable.")
End If
End Sub
End Class
感謝, 馬庫斯
VB.NET程序的Main()入口點必須聲明* Shared *。不使用項目模板會讓你陷入困境。 –
@marcus ..使用另一個子名..不Main().. – matzone