Private Sub UltraCombo1_KeyDown(sender As Object, e As System.Windows.Forms.KeyEventArgs) Handles UltraCombo1.KeyDown If e.KeyData = Keys.Control + Keys.F2 Then e.Handled = True Me.UltraCombo1.SelectedText = "%" End If End Sub
Hereby he returns to me the value "%" when I pulsate contrl F2.
Private Sub UltraComboEditor1_KeyDown(sender As Object, e As System.Windows.Forms.KeyEventArgs) Handles UltraComboEditor1.KeyDown If e.KeyData = Keys.Control + Keys.F2 Then e.Handled = True Me.UltraComboEditor1.SelectedText = "%" End If End Sub
Hereby he does not return to me the value "%". He returns the following mistake to me
Excepción no controlada del tipo 'System.StackOverflowException' en Infragistics2.Win.UltraWinGrid.v10.3.dll
how I can return the value "%" without the error?
Thank you
Windows 7
Visual Studio 2010
NetAdvantage 2010.3
To extract folder "PRUEBA ULTRACOMBO"
RUN VISUAL
OPEN SOLUTION "PRUEBA ULTRACOMBO"
Hello,
I tried several times to reproduce the issue with your version and your project without any success. Could you please clarify what are the steps that I need to walk through in order to reproduce your issue.
Sending file
I have attached a new sample with both UltraComboEditor and UltraCombo and I am unable to reproduce any exception with either of them. They both work fine.
Perhaps you could post a small sample project that demonstrates the exception you are getting.
sorry the mistake takes place with UltraCombo1_KeyDown
thanks