1
vote
0answers
34 views

Windows CE Form Size Properties Not Updating After Maximize

I am developing a full screen Windows CE application in C#. Once I set the WindowState to Maximized the Height and Width properties of the form remain unchanged as does the ClientRectangle and ...
0
votes
2answers
152 views

How to make application display in full screen mode, covering the Start menu?

I'm developing an application for Honeywell Dolphin 6100, a mobile computer with a barcode scanner that uses Windows CE 5.0 like OS. The problem is that I can not put the application into full screen ...
0
votes
1answer
23 views

How do I form-fit my form to the handheld device?

I added a new form to my Windows CE/CF/C# app, but the form is too large -- I have to drag it around to see all of it - I thought the CF automatically made forms scale to the size of the device? Is ...
0
votes
2answers
90 views

Thread synchronization in WinCE

I have faced with a problem of threads synchronization. My presenter analyzes some sensors and update UI form. I moved updating code into separate thread. It works fine, but if the user stops ...
0
votes
1answer
163 views

Embed an external application into a Winform for a WinCE platform

I was wondering if anyone has any ideas on how to embed a windows application (notepad.exe) into a Winform. I have found an example on line for a desktop appl that embeds word into winform ...
1
vote
0answers
220 views

C# WinForm .Visible and Image Change Issues

I am attempting to create a WinForm menu system in C# for WinCE 6.0. The general idea for this menu system is that there are a few picture boxes that act as buttons along the bottom of the screen. ...
0
votes
0answers
51 views

Add a custom fontstyle to WinCE

after some research, i am still not able to add a custom font style to my VS2008 WinCE6.0 project. is this possible at all? and how could i achieve that? Thanks in advance.
1
vote
1answer
184 views

Use of Parameter in SQLite

I have my SQLite db storing my info and it works ok. However I want to use Parameter. I modify this line to set the values and works ok: cmd.CommandText = String.Format("INSERT INTO users ...
0
votes
1answer
232 views

Focus set automaticaly on Winform

I have a form which contains some textBoxes. I have configured the textBox's GotFocus and LostFocus events. My problem is: When some textBox loses focus, the form automatically set the focus on the ...
2
votes
1answer
214 views

Set inputpanel location on WindowsCE

Maybe it isn't possible, but could I set the location of an inputpanel? I tried inputpanel.Bounds = new Rectangle(x, y, width, height) but the inputpanel is reading only. I don't want to re-size ...
1
vote
1answer
334 views

Set pictureBox's image property created on Run-time CF C#

I create a pictureBox on Run-time and then to access to it I use this code: foreach(Control mycontrol in panel.Controls){ if(control.Name == "picBox1"){ //here I can work with my pictureBox } ...
1
vote
2answers
74 views

Identify who invokes Event Handler

I have my app with my labels written to centralize when its text was modified. To make that I invoke a method through an EventHandler. I want to use same method to each one of my labels, but I don“t ...
1
vote
1answer
253 views

Clearing Notification Icons on Windows Mobile

I'm creating a notification for CE 6.5, but this notification is brought up on a looped check - so gradually the notification icons are building up. Is there a way to remove them? Or perhaps let them ...
0
votes
3answers
813 views

Using a Picture Box as a button, how do I ignore/disable double-click events?

I'm having some difficulty using picture boxes as buttons. I'd like to have custom button graphics rather than using the plain-old windows forms Button control. It works pretty well, except the ...
0
votes
0answers
202 views

Windows mobile form display issue

I've written a Windows mobile app and am having issues getting a form to display the contents on load. I have a progress bar which is continually updating and needs to be displayed. It doesn't seem ...
3
votes
2answers
498 views

How to debug a fatal error that happens after calling Application.Exit() in .NET CF 3.5 WinForms application for Windows CE 6?

I am porting a .NET CF 1.0 WinForms application (for older versions of Windows CE) to .NET CF 3.5 (for Windows CE 6). The problem is that, a few seconds after Application.Exit() is called, I get a ...
0
votes
1answer
119 views

How to attach a list box to a button onclick

I am creating a monthly calendar of events. Each day that has one or more events is represented by a button labelled with the day of the month. If the user clicks on a day with one event, that event ...
0
votes
2answers
144 views

About threading in .NET

Below is a code sample presenting the design of a Windows form I use in a Windows CE application. We are having some unresolved problems in our application, and I suspect that the problem comes from ...
0
votes
2answers
318 views

Oversized Windows CE forms in Visual Studio 2008

I'm developing a Windows CE CF3.5 application under Visual Studio 2008, everything went smooth until the designer started throwing a NullReferenceException. Restarted VS2008, rebooted Win7 and the ...
4
votes
4answers
4k views

C#: how to disable form move?

The MSV-Studio description for Locked is "The Locked property determines if we can move or resize the control" so I set the winforms Locked property to true but the form is still movable. What is the ...
1
vote
1answer
628 views

C# WinForms: How to set Button BackColor?

[Microsoft.NET\SDK\CompactFramework\v2.0\WindowsCE] Why does button1.BackColor = Color.Green work in the Visual Studio emulator, but not on the windows CE 5.0 target?
1
vote
2answers
174 views

Can disabling a control cause a radio buttons value to change?

I have a For Each loop going through the controls in a panel disabling them. When the loop reaches one certain grid control and disables it the CheckedChanged event fires for the next control in the ...
0
votes
0answers
597 views

Change the font size of a .net form in Windows CE 6.0 not working?

I have been tasked with modifying an existing phone application to allow it to resize to multiple resolutions. I have it resizing fine by using the Scale function but i'm still finding that the fonts ...
1
vote
3answers
5k views

How to get the form active control?

Is there a way to get the form active control? I was checking in the help for the "Support.GetActiveControl" method but it isn't supported :) for the Compact Framework. I suppose that I can track ...
5
votes
5answers
5k views

Designing forms to work on different resolutions and aspect ratios on Windows CE

I have a .NET 2.0 application that runs on Compact Framework. It has a bunch of different forms that were all originally designed to run on a specific device with a specific screen resolution. I'm ...
1
vote
4answers
288 views

How can I update and get values in Windows Forms while moving one form to other form (like cookies)?

How can I update and get values in a Windows Forms application while moving one form to other form (like cookies)? I need to update the values to some variable and again I am going to refer stored ...
0
votes
3answers
951 views

Why does Windows CE drop key events if you hog the UI thread

Now I appreciate the moral of the story is "don't hog the UI thread" but we tried to KISS by keeping things on the UI thread for as long as possible but I think we've just hit the tipping point and ...