Click here to Skip to main content
15,890,825 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
We are currently migrating a PDA application from .NET compact framework 1.1 to .NET compact framework 3.5.
PDA having operating system Windows 6.0 and 6.5 installed
On got_focus event of custom text box we have wrote below code

C#
private void tbCustom_GotFocus(object sender, EventArgs e)
{ 
    m_Keypad.SetBuffer(tbMileage.Text);
    m_Keypad.HideOSKeyPad();
    m_Keypad.Show();
    this.m_ToolBarButtonNumericKeypad.ImageIndex = 11;
    tbCustom.Focus();
}

its working fine in .NET CF 1.1 but while we convert this code into 3.5 without changing any code its just got into recursive and applcaiton is got crash. Please provide help about this. Thanks in advance.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900