|
-
Jun 24th, 2003, 01:55 AM
#1
Split in word macro *resolved*
Hi
I usually never use VB, but now I need to write a macro for Word. The macro should provide a form that lets the user choose one of several words in the text.
I have the text I need in a String, now I need to split it into the words. So I wrote this:
VB Code:
Dim s As String
Dim subs() As String
' get value into s
...
' now split
subs = Split(s, "/")
However it tells me that it doesn't know the symbol "Split". Isn't it a built-in function?
Thanks in advance
Last edited by CornedBee; Jun 24th, 2003 at 06:43 AM.
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
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
|