01-08-2010, 10:13 AM
Based on the text you've given that would appear in the prompt, there is only one comma (,), so you can use the split command and split the text.
Ex:
first move the text to a variable ABC
MyArray = Split(ABC, ",", -1, 1)
Passwordone = MyArray(1)
Now the vairable "Passwordone" would have the password you need
Ex:
first move the text to a variable ABC
MyArray = Split(ABC, ",", -1, 1)
Passwordone = MyArray(1)
Now the vairable "Passwordone" would have the password you need