I'm writing an application that tests 1 text file for any words that are contained within another text file. The idea behind the application is to search one test file that contains 1 word per line and store these words in an array variable. Each time a word is found the second text file is searched for any occurence of the same word. I'm using two Do While Loops (1 to search each text file). The 1st DO loop goes until a word is found in the first text file and then calls the next DO loop to search the second file. When the word is found in the 2nd text file I want to pop-up a form allowing user input before moving on to the next occurence. Basically, I want to break out of the DO Loop, wait for user input, and then return right where I left off. How can I do this? I don't want to use a MsgBox....I need to use a form... Thanks in advance.