I implement a shortcut key for my winforms and I have struggling with the key combination. I have a combination with ctrl+alt+a+b+c . But it seems it does not hit anymore.
I created a new textbox and implement interface IShortcutProvider in my textbox.
Btw, I also cannot use some keys like Fn, Home, End .... in combination. The shortcut key does work in this case I am using Mnemonic Ex: I have a textbox named Description and we have D with underscore, and another textbox named Instruction ( which is my textbox with implementation of IShortcutProvider) and assigned key Alt + D + C
In this case, the Instruction cannot be focusd if I press Alt+D+C.
Anyone have experience on this can help me to explain ? and the best pratise to use Shortcut in telerik control ?
Thank you
Hung Lu
So here is my issue (I have searched in the forums and can't find an answer)...
I have a RadDropDownList containing tuples of strings. When I click on the Drop Down List, I am expecting this method to be called right away, but once I select the option I want, I have to press the down arrow on the drop down again before it will call the JumpManager code at the bottom.
Basically I want the jumpmanager to be called when I select an option from the drop down, and not have to click the arrow again.
I have tried debugging but am failing to see how to fix it.
Any and all help would be great. Thanks!
*****************************************
P.S. I am new to C# and winforms so that is part of the issue also. Please see attached screenshots to get a better idea of what I'm describing above. I want the new tab for the selection from the drop down list to open without having to click the drop down arrow again.
Thanks!
void mplSpecificDDL_Click(object sender, EventArgs e) { //cast sender object to type RadDropDownList RadDropDownList snd = sender as RadDropDownList; int i = snd.SelectedIndex; Console.Write(snd.SelectedItem); //if it's a valid click... if (i >= 0) { //get the mpl id for the MPL date range selected int mplid = tmpDDL_MPLLists[i].Id; FactoryOrder myOrder = new FactoryOrder(); //create an order tuple to open the specific MPL page we want to view myOrder.AddOrderLine("SpecificList", mplid.ToString()); //jump manager to pull up a specific MPL window tab JumpOrder myJumpOrder = new JumpOrder(); myJumpOrder.factoryOrder = myOrder; myJumpOrder.module = "MPL"; myJumpOrder.targetWin = "MPLS"; //issue: new MPLS window only opens when MainDockWin.mainJumpManager.PassJumpOrder(myJumpOrder); MainDockWin.mainJumpManager.GoToWindow(); } }Morning,
Anyone know how to do this?
I tried: rbTBMgr.CommandTabs["Tools"].Select()
Commandtabs dont seem to have a .IsSelect().
All I want to do is make a tab selected!
Frustrated infragistics user!


We have a winform with a radautocompletebox. I have toggled the Autocompletemode from append to suggestappend and found that if it is set to suggestapppend and when the TAB key is pressed, the key_down event is not firing. As for the append mode, the event fires. So the question is, how can I use the suggest or suggestappend mode and when I press the TAB key the key_down event fires? The event does fire if I press the TAB key a second time.
Thank you,
Jim

|
RadDateTimePickerElement dtPicker = new RadDateTimePickerElement(); |
| dtPicker.Name = "dtPicker"; |
| radRibbonBarButtonGroup9.Items.Add(dtPicker); |

I have a property grid. Property name = Appearance and has child cursor,font,Imagelist,... But ai search Appearance has not result. I expect search with property name= Appearance . has result with child.


