Do you want to have a Form with the "normal" - size, or an form wich is like a popup window? To show the softkeyboard you have to create an inputpanel on your form. Microsoft.WindowsCE.Forms.InputPanel myInputPanel = new Microsoft.WindowsCE.Forms.InputPanel(); then on the gotFocus of the Textbox myInputPanel.Enabled = true; that´s it Regards
sven it
Posts
-
How to Resize the form and open the touch keyboard on screen. -
Problem with OpenFiledialog - C# CompactFrameworkHello, i just found the mistake. I suspend the mainfrom but i forgot to resume it. If you use this.SuspendLayout(); folowwing you have to use ResumeLayout(); Regards
-
Problem with OpenFiledialog - C# CompactFrameworkI have a Form with an maximized WindowState. When I open the Openfiledialog and select a File, wich i want to open in my program, the windowstate is no mor maxamized, but when i request the windostate from the system, it seems to be maxamized. using (OpenFileDialog myOpenFileDialog = new OpenFileDialog()) { myOpenFileDialog.InitialDirectory = "\\Storage Card\\"; myOpenFileDialog.Filter = "xml files (*.xml)|*.xml"; myOpenFileDialog.FilterIndex = 1; DialogResult result = myOpenFileDialog.ShowDialog(); if (result == DialogResult.OK) { xmlPath = myOpenFileDialog.FileName; if (activeProject != null) activeProject.CreateAndOpenEmptyProject(); activeProject = TModelProject.getInstance(); //InitApplDate(xmlPath); activeProject.open(xmlPath); if (activeProject.xmlDoc == null) { MessageBox.Show("Error"); } Cursor.Current = Cursors.WaitCursor; VMain.SuspendLayout(); activeProject.Load(); activeProject.LoadAll(); vTreeView1.InitView(activeProject); Cursor.Current = Cursors.Default; } } Can anybody help me? Thx
-
Image in DataGrid??Hey http://blogs.msdn.com/netcfteam/archive/2006/04/25/583542.aspx[^] there you find an example how to create an editable datagrid. Normaly the datagrid in CF is read-only. Maybe you find there how to add an picture into the datagrid. Regards
-
[Message Deleted][Message Deleted]