[求助]请问这段函数过程的红色字段是什么解释的意思?
Function GetLabelCount() As Integer
Dim i As Integer
Dim c As Integer
Dim L As Object
Set L = Me.Controls("Label1")
For i = 1 To 10
If L.Item(i).Caption <> vbNullString Then
c = c + 1
End If
Next
Set L = Nothing
GetLabelCount = c
End Function
请问这段函数过程的红色字段是什么解释的意思?请帮忙解答!谢谢!