Feb 13, 2003 #1 TheConeHead Programmer Joined Aug 14, 2002 Messages 2,106 Location US What would the equivalent JavaScript code would be for the following: set rs = nothing Would it be: rs = ""; or: rs = null;
What would the equivalent JavaScript code would be for the following: set rs = nothing Would it be: rs = ""; or: rs = null;
Feb 13, 2003 1 #2 jemminger Programmer Joined Jun 25, 2001 Messages 3,453 Location US this should do it: rs = null; ========================================================= if (!succeed) try(); -jeff Upvote 0 Downvote
this should do it: rs = null; ========================================================= if (!succeed) try(); -jeff
Feb 13, 2003 Thread starter #3 TheConeHead Programmer Joined Aug 14, 2002 Messages 2,106 Location US thanks man! Upvote 0 Downvote