I'm developping an application for Honeywell Dolphin 6100, a mobile computer with a barcode scanner that uses Windows CE 5.0 like OS.
I employed in my app. an "openFileDialog" compenent, but the the problem is that a virtual keyboard is showing when the field of the file name is focused, how should disable it or make it invisible ?
Any help on this ?
Note: I'm using VS2008 (C#) and I'm working on Windows 7.
I tried to modify the registery by using the code below but with no success :
RegistryKey rkey = Registry.CurrentUser;
RegistryKey wtaKey = rkey.OpenSubKey(@"ControlPanel\Sip", true);
try
{
wtaKey.SetValue("AllowChange", "dword:0");
}
catch (UnauthorizedAccessException ex)
{
MessageBox.Show(ex.Message);
return;
}