.NET
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
some new created entities are not shown
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hello,
within a while loop we are letting the user pick elements and select points to copy and create entities.
My problem is that some of the newly created entites are shown at once (a leader entity) and some are not shown until the command has ended (a polyline and a mtext entity).
The code to insert and add the entites to the drawing are identically, we cannot see any obvious reason why some of the objects are not shown.
The leader is created as last object in every while loop, but that should make a difference.
The transaction is commited before each loop ends, in fact just after the last entity has been added in each loop.
Is there any command we can call after each loop to enforce updating the screen?
Best greets,
Mario
Solved! Go to Solution.
Re: some new created entities are not shown
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hello,
I just realized that this problem is due to the transient graphics we are useing for selection of entities. The two missing entities (mtext and polyline) are displayed next to cursor, and through the update method I assume the real object gets temporarily cleaned from the display.
Did anyone have experience in this kind of problem and can help?
Best greets,
Mario
Re: some new created entities are not shown
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hello,
the solution was so simple - if you know it :-)
We had to start a seperate transaction in the loop. On committing all the objects are shown properly.
I had nothing to do with transient graphics.
Best greets,
Mario
