On Dec 13, 2006, at 22:03 UTC, Philippe Rigaux wrote:
> You should add a coma "," in the return declaration such as:
>
> Function modListeMots(s as string) As string(,)
Philippe is quite right, but in another way to tackle this particular
problem, would be to pass in several arrays to be stuffed with the
results, like so:
Sub modListeMots(s as String, outWords() as String,
outStartPos() as Integer, outEndPos() as Integer)
In your code, you would simply Redim these output arrays to -1, and
then append the data as indicated.
Best,
- Joe
--
Joe Strout -- [EMAIL PROTECTED]
Verified Express, LLC "Making the Internet a Better Place"
http://www.verex.com/
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>