Tagged Questions

0
votes
0answers
11 views

.Net CF wait for application to display window before sending key strokes

A change in a vendor's WinMo application forces me to jump through some hoops to avoid forcing my users to log in every time. This is highly inconvenient as A) my users are farmworkers who aren't …
0
votes
1answer
27 views

UPNP and .NET CompactFramework

Is there any upnp framework for CF .NET? There is mono.upnp source but it needs porting for CF.
0
votes
2answers
280 views

C# .NET Compact Framework, custom UserControl, focus issue

I have a custom UserControl (a label and a textbox). My problem is I need to handle the key down, key up events to navigate between controls in the form (.NET Compact Framework textbox, combobox, …
3
votes
3answers
127 views

Building a Collaborative filtering / Recommendation System

I'm in the process of designing a website that is built around the concept of recommending various items to users based on their tastes. (i.e. items they've rated, items added to their favorites list, …
1
vote
1answer
337 views

Protobuf-net How to consume a WCF service in NET CF client?

Hello, I'm trying to consume a WCF webservice using the RPC capabilities of the Protobuf-net. Here's my service contract: namespace WcfEchoService { // NOTE: If you change the interface name …
1
vote
0answers
315 views

How do I binary serialize a object using Compact Framework?

I have a object struct _NETINFO { } and I want to convert it to a Byte[] using Compact Framework, I tried the following without sucess: _NETINFO info = new _NETINFO(); byte[] buffer = …
1
vote
1answer
431 views

Transfering file using WCF

I'm trying to write a WCF service that allows PCs and Windows Mobiles to download certain files. For the PCs I used MTOM to stream the data to the clients but it seems that Windows Mobile does not …
1
vote
1answer
401 views

Calling external gps app from VB.NET in CF 3.5 and returning back to VB.NET app

Hi All, I'm writing an app in VB.NET that allows the user to call Garmin Mobile XT to get a route. I've got a form that stays open behind Garmin and upon quitting Garmin, allows the user to go back. …
1
vote
4answers
1k views

.NET CF Application and Out of Memory Exception

Hi, I am developing a .NET CF 3.5 network game. My issue is the app loads all the resources at first instance. However upon subsequent launches, the app gives me memory out of exception while loading …
1
vote
3answers
138 views

Is it possible to get line numbers for stack traces on .Net CF 2.0 or 3.5

I have a .Net CF 2.0 application and am using log4net to log errors. I get a stack trace, but it doesn't have any line numbers. I noticed that it doesn't appear to deploy the pdb file to the device, …
0
votes
1answer
475 views

How do i print to a Bluebird BIP-1300 thermal printer from c#?

Greetings, My application runs under CF 2.0 locally and i would like to know how to connect and send something to print in the embedded printer of a …
4
votes
4answers
270 views

We’re manually mapping our internal data elements to external vendors’ xml schema. there’s gotta be a better way…

I'm considering Altova MapForce (or something similar) to produce either XSLT and/or a Java or C# class to do the translation. Today, we pull data right out of the database and manually build an XML …