Quote Originally Posted by yujin View Post
This would be the final step.
Call the Test code from the Main procedure and repeat until you click "No" in the message box.

Sub Test_Main()
    Dim Answer
    
    Do
        DoEvents
        Call Test
        Answer = MsgBox("Process Another?", vbYesNo + vbQuestion)
    Loop Until Answer = vbNo
End Sub


BTW, I wonder what we're going to do with the highlighted row after they check it out?
'Cause it remains until we turn it off.
I planned on removing it on next start but wasn't sure how to go about it. I kinda added things as I thought of them, thats one of my many problems, I get all excited if I can add a feature but I dont take into account what it means programming wise.