-1
我在Visual Basic中編寫代碼,我想調用具有特定代碼的特定變量的不同子例程。子程序和變量在visual basic中
Dim MonthSales As Double
Call GetMonthSales()
在我的備用子程序:
Console.WriteLine("How much did you sell this month?")
MonthSales = CDbl(Console.ReadLine())
我所試圖做的是讓我的備用子程序設置我在我的主程序尺寸無論用戶將他們的每月銷售
如果您使用Console類,則使用VB.Net而不是VBA或vbscript。如果你使用VB.Net,你應該不**使用'Call'關鍵字。 –