Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by JayValkyr

  1. JayValkyr

    split problem

    Heya again.. The following line will split your "referrer" column into an array: ref = Split(rs("referrer"),",") If you try to use this ref variable without an array number you'll end up with the type mismatch error message. -> wscript.echo(ref) 'will return...
  2. JayValkyr

    File information

    Hey.. You have to remember that leading zero in the month number :) according to mrmovie: --- strMonth = Month(Now) 'add these lines.. if int(strMonth) < 10 then strMonth = &quot;0&quot; & strMonth end if --- that should do it.. Jay
  3. JayValkyr

    split problem

    Heya Dave.. Why don't you just use replace functionality.. Ref = replace(rs(&quot;referrer&quot;), &quot;,&quot; ,&quot;&quot;) Should do the trick Jay

Part and Inventory Search

Back
Top