
Operation on a STRING of characters
In OE's help, click on the index tab and look up "posting newsgroup messages".
There you will find the following:
<snip>
Note: To send your message to multiple newsgroups on the same news server, click the icon next to
Newsgroups in the New Message dialog box. In the Pick Newsgroups dialog box, click one or more
newsgroups from the list (hold down the CTRL key to select multiple newsgroups), and then click Add.
You can choose from all newsgroups or only those you subscribe to by clicking the Show only
subscribed newsgroups button.
</snip>
Just be sure to crosspost to only the 2 (or maybe 3) *most* relevant newsgroups. In this particular
case, microsoft.public.scripting.vbscript was probably the only NG you needed.
--
Michael Harris
MVP Scripting
How do you do that?
Quote:
> Asked and answered in the ...inetsdk.programming.scripting.vbscript
newsgroup
> <advice type="friendly">
> It's better to cross-post a question as one post to multiple newsgroups
than as separate posts.
Quote:
> That way the post and any replies posted from any of the groups is seen in
all of them.
> </advice>
> --
> Michael Harris
> MVP Scripting
> Hello,
> I have the following simple (for you simple, for me impossible) problem, I
> hope you can help me.
> I have a string of characters:
> String = "abcdefgh"
> I would like to assign every two letters of that string to different
> variables:
> A = "ab"
> B = "cd"
> C = "ef"
> D = "gh"
> Can you show me a code in VBscript (ASP) to do that?
> Thank you for your help.