FireLord Posted November 8, 2007 Posted November 8, 2007 Hi, I'm creating a Buddy List and I start with an INI file that has let's say five names in it each separated by a comma (the delimiter). How can I make my program type all the words in the INI but stop on each comma and wait a few seconds, then send the next name in the list until all are sent. [center]See the Helpfile[/center] While Alive() DrinkWine(); }[center][/center]
Valuater Posted November 8, 2007 Posted November 8, 2007 (edited) As an example $read = IniRead() ; ini read $Split = StringSplit($read, ",") ; split by commas For $x = 1 To $Split[0] MsgBox(0x0, "Split #" & $x, $Split[$x], 1) ; display info Sleep(5000) ; wait 5 seconds Next 8) Edited November 8, 2007 by Valuater
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now