Hello I need to launch an external application which accepts user data and then creates a text file. My AutoLISP routine then reads that file and inserts a block with attributes read from the file. I can launch it using startapp but the problem is that the Lisp routine carries on excuting without waiting for the external app to close. ie - it is not pausing at the startapp line. It launches tha external application and then jumps staright to the rest of the code - trying to read the file and insert the block before the user has entered the data via the external app. Is there a way to make the code pause at or just after the startapp entry until the external application is closed down. thanks for any help..