I want to use an ExComboBox control as an user editor. How can I do that?
If you are using VB, the setup installs the VB\UserEdit sample that will help you to add an ExComboBox control as an user editor. Shortly, in order to add a new user editor to one of your grid columns, or cells, you have to know that EditType property of Editor object should be EditTypeEnum.UserEditorType. Once that you have set this property, the user has to specify the type of the user control using the UserEditor method of Editor object. For instance, UserEditor “Exontrol.ComboBox”, “” initializes an user editor of ExComboBox type. If the grid creates the user editor successfully, the UserEditorObject property of Editor object points to the newly created user control. So, in this case it references an ExComboBox control. Use the UserEditorObject property any time when you need to access the user editor control. The events like UserEditorOleEvent, UserEditorOpen or UserEditorClose are fired anytime when grid control has to deal with an user editor control. The UserEditorOpen event is
Related Questions
- I am an authorized end user who has full control of a protected file on the file server. How can DOFS stop me from obtaining the file and sending it out?
- In Live Support, can both the technician and end user share control of the desktop?
- I want to use an ExComboBox control as an user editor. How can I do that?