samonwalkabout
Registered User.
- Local time
- Today, 16:34
- Joined
- Mar 14, 2003
- Messages
- 185
Its
If Not Me.List0.ItemData(vtlm) Then
is the same as
If Me.List0.ItemData(vtlm) Not NULL Then
It just tests to see if anythink is selected in the first list box. It looks at Null Not Null not true false.
You could say.
If Me.List0.ItemData(vtlm) null then
msgbox "null"
Else
'logical expression
I dont think thats the problem here i really need to know if
And if it can how?
Thanks
If Not Me.List0.ItemData(vtlm) Then
is the same as
If Me.List0.ItemData(vtlm) Not NULL Then
It just tests to see if anythink is selected in the first list box. It looks at Null Not Null not true false.
You could say.
If Me.List0.ItemData(vtlm) null then
msgbox "null"
Else
'logical expression
I dont think thats the problem here i really need to know if
-- would the other method "rst.FindFirst " look at the contents of the destination list box to compare or the contents of the table?
And if it can how?
Thanks