标签: vb6 function-parameter
如何在VB6中指定参数的默认值?
答案 0 :(得分:28)
Private Sub SomeSub(Optional SomeParam As Integer = 0) ' blah End Sub