Jan 22, 2008 #1 ram567 Programmer Joined Dec 28, 2007 Messages 123 Location US Hi! what is the syntax error the below if account_id <> "xxxx" and <> "yyyyy" <> "zzzzz" then msg box
Hi! what is the syntax error the below if account_id <> "xxxx" and <> "yyyyy" <> "zzzzz" then msg box
Jan 22, 2008 #2 Skie Programmer Joined Jun 21, 2004 Messages 475 Location US If account_id <> "xxxx" And account_id <> "yyyyy" And account_id <> "zzzzz" Then Upvote 0 Downvote
Jan 22, 2008 Thread starter #3 ram567 Programmer Joined Dec 28, 2007 Messages 123 Location US Thank you so much skie Upvote 0 Downvote
Jan 22, 2008 #4 S SkipVought Programmer Joined Dec 4, 2001 Messages 47,492 Location US or... Code: select case account_id case "xxxx", "yyyyy", "zzzzz" case else 'msgbox end select Skip, Did you hear what happened when the OO programmer lost his library?... He's now living in OBJECT poverty! Upvote 0 Downvote
or... Code: select case account_id case "xxxx", "yyyyy", "zzzzz" case else 'msgbox end select Skip, Did you hear what happened when the OO programmer lost his library?... He's now living in OBJECT poverty!
Jan 23, 2008 Thread starter #5 ram567 Programmer Joined Dec 28, 2007 Messages 123 Location US thank you skip, it is valued information for me it helps lot. Upvote 0 Downvote