I am wondering what the default "ENTER" event handling is for the various controls, such as textbox, dropdown, etc.? Does it automatically complete and tab to the next control?
I'm afraid I don't understand your question. Why would the Enter event tab to the next control?
It is an expected behavior by our users, who are converting from a greenscreen telenet terminal.
Here is an example of what I am asking: http://duncanmackenzie.net/blog/Enter-Instead-of-Tab/default.aspx
However, I would like to set this globally for all controls throughout the application using a stylesheet rather than individually by form (there are MANY of them in the app) or globally using IMessageFilter (which could be problamatic if there are nuanced areas where this change will not work).
Oh, I see. I misunderstood the question. When you sai "ENTER" event, I assumed you were talking about the Enter event of the control - the event that fires when focus enters that controls. Clearly it would not make sense to set focus to another control every time a control gets entered.
You meant the Enter key.
Anyway, I don't think has anything specifically to do with the Infragistics controls, so you might be better off posting in a more general DotNet programming forum. But I would think you should be able to use the KeyPreview property of the form to catch key events of all controls on that form.