Optional inputListView As ImageList
How do I test whether an imagelist was provided?
Printable View
Optional inputListView As ImageList
How do I test whether an imagelist was provided?
Code:
If inputListView = Nothing Then
'No List Was Givin
Else: End If
'List Was Givin
Compile error:
Invalid use of object
I already tried that.
I also tried:
if isMissing(inputlist) then
If Not (inputListView Is Nothing) Then
:D :D :D
That was it!
The = vs the 'is' was the prob.
Thanks.