I have an insertblock loop in VBA and a question about when it finishes. After it finishes the screen goes all white with an hourglass for about a minute and then the drawing reappears with the blocks placed. What is happen during the pause? Can I prevent it? Sample code: intCounter = 0 Do Set blockRefObj = ThisDrawing.ModelSpace.InsertBlock(insertionPnt, "test.dwg", intRadMult, intRadMult, intRadMult, 0) insertionPnt(1) = insertionPnt(1) + (0.25 * intRadMult) ThisDrawing.Application.Update intCounter = intCounter + 1 Loop Until intCounter = 6 Thanks for any help.