|
-
Apr 9th, 2002, 12:26 AM
#1
Thread Starter
C# Aficionado
Optional inputListView As ImageList
Optional inputListView As ImageList
How do I test whether an imagelist was provided?
-
Apr 9th, 2002, 12:30 AM
#2
Hyperactive Member
Code:
If inputListView = Nothing Then
'No List Was Givin
Else: End If
'List Was Givin
-
Apr 9th, 2002, 12:31 AM
#3
Thread Starter
C# Aficionado
Compile error:
Invalid use of object
I already tried that.
I also tried:
if isMissing(inputlist) then
-
Apr 9th, 2002, 12:31 AM
#4
-= B u g S l a y e r =-
If Not (inputListView Is Nothing) Then
-
Apr 9th, 2002, 12:33 AM
#5
Thread Starter
C# Aficionado
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|