Search event for complete load AutoCAD-Application

Search event for complete load AutoCAD-Application

Anonymous
Not applicable
703 Views
2 Replies
Message 1 of 3

Search event for complete load AutoCAD-Application

Anonymous
Not applicable

Hello,

 

I search an event, that fire after complete initialising AutoCAD.

 

Is this possible?

 

regards Mario

0 Likes
704 Views
2 Replies
Replies (2)
Message 2 of 3

Anonymous
Not applicable
Hi, i have found a solution: 1.: in IExtensionApplication.Initialize i add a event to Application.Idle += setIconState2 2. in the eventhandler remove himself after work public void setIconState2(object sender, EventArgs e) { Boolean runIsOk = doAny(); if (runIsOk) Application.Idle -= setIconState2; } regards Mario
Message 3 of 3

Anonymous
Not applicable

This works fine. Thanks a lot

0 Likes