Temporarely Disable Inventor

Temporarely Disable Inventor

Anonymous
Not applicable
266 Views
3 Replies
Message 1 of 4

Temporarely Disable Inventor

Anonymous
Not applicable
Hi again My addin does some extensive work, reading through an assembly in a couple of seconds. How do I prevent userinput and the stupid - "Server Busy" dialogbox?, while my prog is running. / Michael
0 Likes
267 Views
3 Replies
Replies (3)
Message 2 of 4

Anonymous
Not applicable
DoEvents "CADmageren ApS" wrote in message news:418b5c6d$1_2@newsprd01... > Hi again > > My addin does some extensive work, reading through an assembly in a couple > of seconds. > > How do I prevent userinput and the stupid - "Server Busy" dialogbox?, while > my prog is running. > > > > > / Michael > >
0 Likes
Message 3 of 4

Anonymous
Not applicable
How can DoEvent, prevent user from activating Inventor? "VBA" skrev i en meddelelse news:418b82af$1_3@newsprd01... > DoEvents > > "CADmageren ApS" wrote in message > news:418b5c6d$1_2@newsprd01... >> Hi again >> >> My addin does some extensive work, reading through an assembly in a >> couple >> of seconds. >> >> How do I prevent userinput and the stupid - "Server Busy" dialogbox?, > while >> my prog is running. >> >> >> >> >> / Michael >> >> > >
0 Likes
Message 4 of 4

Anonymous
Not applicable
It won't :-) What if you call the "reading assembly" from a Modal Form? This will force the user to wait untill it has completed the "reading". Or perhaps you can disable all the Menu's / Toolbars? Sub DisableCommandTypes() ThisApplication.ActiveDocument.DisabledCommandTypes = k... ' = 0 to "reset" End Sub "CADmageren ApS" wrote in message news:418f36e0$1_2@newsprd01... > How can DoEvent, prevent user from activating Inventor? > > > "VBA" skrev i en meddelelse > news:418b82af$1_3@newsprd01... > > DoEvents > > > > "CADmageren ApS" wrote in message > > news:418b5c6d$1_2@newsprd01... > >> Hi again > >> > >> My addin does some extensive work, reading through an assembly in a > >> couple > >> of seconds. > >> > >> How do I prevent userinput and the stupid - "Server Busy" dialogbox?, > > while > >> my prog is running. > >> > >> > >> > >> > >> / Michael > >> > >> > > > > > >
0 Likes