Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
81 views

Inversion of control on Compact Framework 2.0

I've been "googling" around about inversion of control on Compact Framework but most of solutions will work on 3.5 version. Summarizing: I need a light-weight, simple inversion of control container ...
3
votes
3answers
318 views

How do I unblock threads which have called the WaitOne method on an AutoResetEvent object?

Below is a class having the method 'SomeMethod' that illustrates my problem. class SomeClass { AutoResetEvent theEvent = new AutoResetEvent(false); // more member declarations public ...
1
vote
2answers
93 views

C# customcontrol OnMouseDown - always get wrong Y position

I am struggling in a project on Windows Mobile 6.5. I am writing a custom-controls that can plot lines of where the user has clicked on the custom-controls. I am facing a problem that the ...
1
vote
2answers
45 views

Implementing IComparable using Framework 2.0

I am trying to refactor the below code for the 2.0 framework (required at work). The below code was kindly provided per a previous post in which I was trying to figure out how to sort a dictionary of ...
0
votes
0answers
17 views

How can i send message to server via windows mobile

i am new to mobile programming,i use windows mobile 5.0 pocket pc, VS2008 and CF 2.0. I want to send message to the server include some values, but i don't know what really i need to do so.what i need ...
0
votes
1answer
123 views

JSON serializer for .NET CompactFramework 2.0

I need to Serialize and De-serialize Custom Objects under .NET Compact Framework 2.0. I have gone through JSON.NET 3.5 but it need .NET Compact Framework 3.5. I am restricted to not to upgrade from ...
0
votes
1answer
59 views

Movable pictures on a map using .net compact framework 2.0 mobile device 5.0

We need to find a way to create a movable (at run time) picture on a map overlay using the .net compact framework 2.0 on 5.0 mobile device. The only choice we have seen so far is flash however given ...
0
votes
0answers
220 views

How do I fix this function for FTP upload via .net compact framework?

Thanks for looking at my question. I am currently working on an embedded (Windows CE 6.0) app (.NET Compact Framework, C#) for updating an existing app. I have everything working with the ...
0
votes
0answers
29 views

Compact Framework Spliter, Table, Grid?

I want to add some buttons to a form. The buttons have to be always visible like the MainMenu. Is there any way ? Biger MenuItems are ok, too. /
0
votes
1answer
247 views

Mobile Compact Framework 2.0 Install unsuccessful from Win7 generated from VS2008

I recently upgraded a VS2005 solution for a WinMobile5 app to VS2008. The solution also contains a CAB builder project plus an MSI Desktop Installer project. A custom DLL from the installer takes care ...
0
votes
2answers
202 views

Windows Mobile - Disable USB (Compact Framework - C#)

I need to disable USB on Windows Mobile. How to disable USB on Windows Mobile using Compact Framework 2.0 (C#)? I am using OpenNETCF too. If it has some class to disable USB, I can use it too.
0
votes
1answer
448 views

Bring a window to foreground without window handle

I have a Windows CE embedded 6.0 application that opens another app in the background, and I want to bring the other app to the front. I first tried SetParent with the third party app's ...
0
votes
1answer
203 views

Change file LastWriteDate in Compact Framework

FileSystemInfo.LastWriteTime property is readonly in CF. Is there an alternative way to change that date?
0
votes
0answers
134 views

Windows Mobile - Dropbox .NET Compact Framework 2.0 C#

Anyone having implementation of Dropbox APIs (C#) for Compact Framework 2.0? I found many, but all are for full .net framework. Dropbox has SDKs for Android and iPhone only.
0
votes
0answers
164 views

Is is possible for a Compact Framework 2.0 App to consume a WCF Web service

We are in the process of creating a new WCF web service (WCF service that has an basicHttpBinding Endpoint) to carry out some of our business logic. The web application connects not problem at all, ...