|
-
Feb 22nd, 2001, 12:38 PM
#1
Thread Starter
Hyperactive Member
Hi I have a list and I'm trying to find out if it's members exist in two rows of an MS Access table using vb script. How do I do this? Here's my suedo code that doesn't work:
For i = 1 to MySQLQuery.eof
For Each itemInMyCommaDelimitedList
if MySQLQuery(4) = itemInMyCommaDelimitedList then
do stuff
else
itemInMyCommaDelimitedList & " is not in DB"
end if
if MySQLQuery(6) = itemInMyCommaDelimitedList then
do stuff
else
itemInMyCommaDelimitedList & " is not in DB"
end if
Next
Next
Thank you
JoeyO
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
|