Questions tagged [.net-cf-3.5]

For .NET compact framework version 3.5 related questions

The Microsoft .NET Compact Framework (.NET CF) is a version of the .NET Framework that is designed to run on resource constrained mobile/embedded devices such as personal digital assistants (PDAs), mobile phones, factory controllers, set-top boxes, etc. The .NET Compact Framework uses some of the same class libraries as the full .NET Framework and also a few libraries designed specifically for mobile devices such as .NET Compact Framework controls. However, the libraries are not exact copies of the .NET Framework; they are scaled down to use less space.

The Microsoft .NET Compact Framework 3.5 Redistributable contains the common language runtime and class libraries built for the .NET Compact Framework. In addition to version 3.5 support, it also supports applications developed for version 1.0 and 2.0. The .NET Compact Framework 3.5 provides new features such as Windows Communication Foundation, LINQ, SoundPlayer, new runtime tool support, and many other features.

147 questions
0
votes
2 answers

WinCE device and VS2008 connectivity for debugging and deploying

I have WinCE device and visual studio 2008 project. I want to deploy and debug the project without active sync (I am using Win7 as my developemnt machine). I have established the connection between my device and developemnt machine using network…
Omkar
  • 2,129
  • 8
  • 33
  • 59
0
votes
1 answer

Visual Studio 2008 .Net CF 3.5 - Can't import SSH.NET library

I'm working on proprietary hardware that's locked to .Net 3.5 CF. When I try to add the SSH.NET reference, I'm getting the error below. Does anyone know what I need to do?
MoebiusUK
  • 11
  • 6
0
votes
1 answer

C# .NET Compact Framework, Problem with mousedown event, using Touch Screen

I'm currently developing a software for a Smart Device, using Visual Studio 2008, C#. The device has touch screen as input method. I can't use MouseDown event. I created a custom button, inherited from System.Windows.Forms.Button class. Trying to…
Bee-
  • 64
  • 6
0
votes
1 answer

C# System.NotSupportedException on Marshal.GetFunctionPointerForDelegate

I have the following situation: I have 2 c++ DLL files communicating with a C# application using events. The C# application passes function pointers within a Setup() method to both files which may later raise an event using this function…
Aureon
  • 387
  • 3
  • 4
  • 15
0
votes
1 answer

Show system "working" animation in NETCF

I would like to programmatically show and hide the built-in "working" animation from Windows Mobile. I am talking about the rotating colored brushes you can see in the middle: Yes, I know that I could make my own animation, but this would be…
ZorgoZ
  • 2,974
  • 1
  • 12
  • 34
0
votes
1 answer

Added project to VS 2008 solution; created dependency; getting compiler error CS0246

This is probably a very basic error on my part. Here's what I did: Created a new C# Smart Device Project in Visual Studio 2008. Added a C# project (Bouncy Castle) to this solution. Created a dependency: my Smart Device Project depends on crypto,…
John
  • 15,990
  • 10
  • 70
  • 110
0
votes
1 answer

Error on delete file at Windows Mobile 6.5

I'm working on a project for windows mobile 6.5. I am using C # with compact framework 3.5 (CF 3.5) and SDK for Windows Mobile 6.5. My routine writes files to a temporary directory for further processing. After a few days the file is renamed and…
0
votes
1 answer

LoadObjectV2 notsupportedexception

I created an usercontrol with a property of type SetOfImageFilenames: [Serializable] public class SetOfImageFilenames { private string name; public string Name { get { return name; } set { name = value; } } …
Sere
  • 1
  • 3
0
votes
1 answer

Symbol Barcode Reader on_read issue

I have a Moto Mc9096 device, EDMK SDK, VS2008 etc all of the prereq's I'm having an issue where once I've scanned a barcode it constantly repeats the event. normally when this happens its a flag or status needs changing but there are no obvious…
L Riley
  • 337
  • 4
  • 15
0
votes
1 answer

(C#) How to Change InputLanguage in .NET CF?

(C#, Windows Form, .NET Compact Framework 3.5, Windows CE 6.0) How to Change InputLanguage in .NET CF? I want to change laguguage of UserControl keyboard.
0
votes
3 answers

Best way to send message to IBM Websphere MQ from C# .net CF 3.5 running WiN CE 6 devices

I am new to IBM websphere MQ and am looking for best way to send message from win CE 6 device using c# .net CF 3.5 app to MQ. I have searched and found that WebSphere MQ Telemetry and a MQTT client can do this. Is there any other way? Can i do it…
0
votes
2 answers

Trouble with Control.Invoke using VB.NET and CF3.5

THis is my first time using threading for an application. I'm working with VB.NET, VS2008, and CF3.5 I made a small test project to try to understand how Threading works, especially when trying to access UI Controls in another thread. My Form is…
0
votes
0 answers

using SQLite database for smart device VS 2008

I'm developing an application for my WindowsCE packect PC(.netCF35) to read some parameters and record them in my SQLite database in Visual Studio 2008. I knew that I need to add SQLite references to my application (I had a succeed experience for my…
0
votes
1 answer

Win CE DLL Import from \WIndows throws MissingMethodException

From a .Net CF 3.5 application I am trying to PInvoke the 'i2csdk.dll' that is located in the \Windows directory on my Windows CE 7 device. When I attempt to execute the PInvoke I get a 'System.MissingMethodException' with additional info Can't…
Hawkez
  • 673
  • 6
  • 7
0
votes
1 answer

Solution to use Websocket on .Net CF 3.5

I am developing DDP client application for embedded Windows CE, Which has .Net compact framework 3.5. DDP has developed on top of Websocket, I can't find the solution/dll that supports websocket for .Net CF 3.5. Looking for websocket library…