Como definir um parâmetro opcinal no VB6
| 1 2 3 4 5 6 7 | Sub notifica(ByVal company As String, Optional ByVal office As String = "QJZ")     If office = "QJZ" Then         Debug.WriteLine("office not supplied -- using Headquarters")         office = "Headquarters"     End If     ' Insert code to notify headquarters or specified office. End Sub | 
