Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
When I have the following code:
Form1 = New System.Windows.Forms.Form Textbox1 = New System.Windows.Forms.TextBox Form1.Controls.Add(Textbox1) Form1.Show
The spacebar inputs are are going to Inventor instead of the text box. Is there a nice way to send all input to the form (while it has the focus)?
I now turn off all Inventor commands with the code below, but that feels quite rough:
ThisApplication.UserInterfaceManager.ActiveEnvironment.DisabledCommandTypes = 255
Solved! Go to Solution.