-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a chance to upgrade a legacy suite of applications currently using .net 1.1 to the newest .net framework.
It uses OpenNETCF 1.4 to communicate with the mobile device.
Is it worthwhile to upgrade from opennetCF ver 1.4 to ver 2.3 as well?
Should I be expecting significant roadblocks/issues…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi.
I have a background worker that stops after 100 iterations. Like this:
BackgroundWorker bgWorker = new BackgroundWorker();
bgWorker.WorkerReportsProgress = true;
bgWorker.WorkerSupportsCancellation = true;
bgWorker.DoWork += new OpenNETCF.ComponentModel.DoWorkEventHandler(this…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi!
I'm new working with background worker in C#.
Here is a class, and under it, you will find the instansiation of it, and under there i will define my problem for you:
I have the class Drawing:
class Drawing
{
BackgroundWorker bgWorker;
ProgressBar progressBar;
Panel panelHolder;
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am using the Signature control in OpenNETCF. It works great for most everything I need.
However, I need a way invert the signature and load it back in.
It has a call to get the "bytes" for the signature (GetSignatureEx()). It returns a byte[] of the signature. This signature can then be loaded…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've been trying to track down a bug I thought was thread-related, but I think instead there is an issue with the way I am using OpenNETCF's Stopwatch. I am using OpenNETCF.IoC in my application, but for the sake of simplicity I moved the following code directly into a view:
public partial class…
>>> More