Does anyone know how to load a block into the drawing database without actually inserting it into drawing? TIA. Joe --
Sure. But since you know alot more about coding than I, I will just explain how I'd go about it.... Use ObjectDBX to access the database of the source drawing for the block. Collect all of the entities into an array. Use the Add method to the Blocks Collection of the destination drawing, then use CopyObjects method to place the objects from the source block to the destination block. Alternatively, you could use the InsertBlock method and then immediately delete the block...... Jeff
I wouldn't necessarily say that's true. Thanks for the ideas, I was hoping it might be a bit easier though. I'll give it a try. Joe --
You could insert a blank drawing with block definition into your drawing, block comes with it. Too simplistic?? Paul