Questions tagged [opennetcf]

OpenNETCF is a provider of libraries and tools commonly used in .NET Compact Framework applications for Windows CE and Windows Mobile

OpenNETCF is a provider of libraries and tools commonly used in .NET Compact Framework applications for Windows CE and Windows Mobile. The most commonly used library is the Smart Device Framework, or SDF.

135 questions
6
votes
1 answer

OpenNETCF 1.4 Vs OpenNETCF 2.3

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…
CF_Maintainer
  • 973
  • 2
  • 12
  • 30
5
votes
2 answers

Compact Framework - OpenNetCf.Net FTP Samples?

I am trying to get the OpenNetCF.Net FTP Components working with my PDA application. I am struggling to get it doing any more than connecting to the server and wondered if anyone knew of any sample code I could use to learn how to use it with? I…
djdd87
  • 67,346
  • 27
  • 156
  • 195
4
votes
2 answers

OpenNETCF: is it free to use?

I downloaded all the OpenNETCF dlls. Is it free? Or will it stop working after a year?
Gali
  • 14,511
  • 28
  • 80
  • 105
4
votes
2 answers

How to attach Messages from a Form shown with ShowDialog to Application2?

I am trying to use the code in this article that lets you know when your app is idle.. This code works great if your application has only one form. You call Application2.Run(myOnlyForm) on it and all messages get routed through the filters in…
Vaccano
  • 78,325
  • 149
  • 468
  • 850
4
votes
0 answers

MouseUp event fired again several minutes after the button was pressed

.NET CF WinForms app runs on Windows CE5 and CE7 devices, with touchscreen. We hook up to MouseUp event rather than Click in our Button implementation (because of apparent problems with touchscreen sensitivity). We also hook up a Windows Message…
enkod
  • 91
  • 2
  • 8
4
votes
1 answer

Why do I get "CreateFile Failed: 161" when I try to open the serial port?

I get "CreateFile Failed: 161" on the serialPort.Open() line: . . . MessageBox.Show(string.Format("Made it into PrintUtils.PrintBarcode()")); using (SerialPort serialPort = new SerialPort()) { MessageBox.Show("Made it into using statement…
4
votes
3 answers

Unable to load DLL 'coredll.dll': The specified module could not be found. (On Windows XP)

Thanks to the gurus at StackOverflow. You guys are awesome. I posted on question on detecting idle time on a Compact framework application and got answers very quickly. When I tried the suggested solution on my Windows XP development box, I get this…
Gopinath
  • 1,858
  • 7
  • 31
  • 50
4
votes
1 answer

OpenNetCF WebRequestMethod Class is missing

I Have downloaded community edition of OpenNETCF from this link, And Trying to access FTP. But I am not able to find WebRequestMethods class in OpenNETCF.Net or OpenNETCF.Net.Ftp Namespace. Please help and suggest if I am missing something.
Siddharood
  • 908
  • 1
  • 12
  • 24
4
votes
1 answer

OpenCFNet's LargeIntervalTimer on Socket SoMo 650/655 device

I'm working on a Windows Mobile 6.1/6.5 application running on .NET Compact 3.5. This application has been running successfully for years on the old HP iPaq 210, but I'm having some trouble getting it to run on a Socket SoMo 655. Almost everything…
4
votes
2 answers

OutOfMemoryException loading big image to Bitmap object with the Compact Framework

I have a problem with a memory leak. I have this code in a button_click : Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click Dim ms As New IO.MemoryStream Dim bm As New…
Allende
  • 1,480
  • 2
  • 22
  • 39
3
votes
2 answers

Serial, RS422, In C#, TxDone Event Not Firing, No Data Being Received

I am writing an application that uses OpenNETCF.IO.Serial (open source, see serial code here) for its serial communication on a Windows CE 6.0 device. This application is coded in C# in the Compact Framework 2.0. I do not believe the issue I am…
3
votes
0 answers

OpenNETCF.Net.Networkinformation Examples - Querying WiFi Information

I've started playing with the OpenNETCF Framework to capture information related to the WiFi connection available on the device I am writing an application for. I found a very usefull example at http://msdn.microsoft.com/en-us/library/aa446491.aspx…
3
votes
1 answer

I do not know how to handle SocketException to suit my needs

INTRODUCTION AND RELEVANT INFORMATION: I am an inexperienced C# developer that inherited colleague's project and was tasked to fix certain bugs. One of the tasks was to switch application to offline mode if Internet connection is unavailable. My…
AlwaysLearningNewStuff
  • 2,939
  • 3
  • 31
  • 84
3
votes
2 answers

OpenNETCF Signature control question

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…
Vaccano
  • 78,325
  • 149
  • 468
  • 850
3
votes
2 answers

c# opennetCF background worker - e.result gives a ObjectDisposedException

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; …
1
2 3
8 9