1
vote
2answers
27 views
How to play an Exclamation or Asterisk sound in the .NET Compact Framework 2.0 ?
I want to create audible feedback to the user to signal success or failure of data validation. Playing the system Asterisk and Exclamation sounds seem to be the proper way to do th …
2
votes
3answers
112 views
How would you refactor this bit of code?
This bit of code runs on Windows Compact Framework and what it does is obvious. It looks as it should be refactored (especially considering that I may want to add cmd.ExecuteResult …
1
vote
2answers
30 views
How can I force validation of a form / control in Compact Framework?
Is there any way to force control validation in .NET CF? In full .NET there is the Validate() method, but it is missing from CF.
I'm trying to make a control bind data back to th …
3
votes
2answers
42 views
Semaphores in .NET compact framework
Unfortunately, there is no Semaphore in System.Threading when using the .NET Compact Framework.
I'm not sure why that is, does anyone have an idea?
After googling I've found a bun …
0
votes
2answers
41 views
Adding menu items from a separate thread.
I'm creating menu items in a separate thread and adding them to the menu created in the main thread. I'm using Invoke for that. Getting "Value does not fall within the expected ran …
0
votes
1answer
16 views
Windows Mobile, file associations and command lines
I've created a Windows Mobile application that opens, edits and closes a data file format. There're a couple of features I'd like to implemenet but I'm not sure how to go about it. …
0
votes
1answer
29 views
Cursor/selection position in DateTimePicker
I'm trying to determine the currently selected portion of the date (or time) editor. I need to to provide custom action when the navigation keys on PDA are use. In particular i wan …
0
votes
1answer
32 views
Using maps on Windows Mobile
I'm experimenting with maps on different mobile platforms. Getting Google Maps to work on Android was easy, following this tutorial. Getting the same to work on Windows Mobile is a …
0
votes
0answers
26 views
Is it possible to intercept an outgoing SMS message on Windows Mobile?
I am interested in writing an app that will intercept an outgoing SMS message and process it in some way before it is sent. Is that possible in the .NET compact framework? I have s …
2
votes
3answers
45 views
How do I support different Screen sizes in Windows Mobile?
Hello,
I´m writing a Compact Framework Application for Windows Mobile 6.5. The Application will be sold in the Windowsphone Marketplace. To do so, I have to support the various Sc …
0
votes
1answer
44 views
Custom listview control for windows mobile in c#
I need to develop a custom listview control (ie, i need two labels and a progress bar in each list item) . I am new to windows mobile so please help me with code samples.
0
votes
1answer
12 views
.NET CF 3.5 Reducing Xml Property Name Lengths
Hi there,
I've currently got a class similar to this:
public class myClass
{
**[XmlElement("mcp")]**
public int MyClassProperty;
}
This is to try and reduce the length of the p …
1
vote
1answer
49 views
Splash screen on windows mobile.
Only that:
What is the best to do it?
I'm using C#, .Net Compact Framework 2.0 SP2, and Windows Mobile 5.0 and above.
I'm trying with a winForm but it takes long time to show. I …
0
votes
1answer
22 views
Creating tooltip in Compact Framework
I'm trying to create tooltips for form elements (textboxes, etc) in WinCE 5.0 using the Compact Framework 3.5. I believe the functionality is implemented in the OS but not exposed …
4
votes
11answers
182 views
testing if a string can be cast as a integer in VB.NET
Is there a better way of testing if a string can be converted to an integer other than something like the following?
Public Function IsInt(ByVal value As Object) As Boolean
T …
