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
1 answer

VS 2008 installed on Win 8 over VS 2012 & Fail to open a Smart Project - MSBuildBinPath issue

I had developed an app for Smart Project for WinCE using VS 2008 .NET3.5 Today on my Win 8 system, I have VS 2012. i installed VS 2008 Pro from : - Visual Studio 2008: (3,30 GB)…
Tvd
  • 4,463
  • 18
  • 79
  • 125
0
votes
1 answer

Windows Compact Embedded Not Automatically Deployed

I have a strange behavior with Visual Studio 2013 and .Net Compact Framework: I can compile my WinCE program correctly, I can deploy it and start in debug mode by pressing F5. Everything is fine. But if I change my program and press F5 the…
flexo
  • 1,120
  • 1
  • 9
  • 14
0
votes
1 answer

Windows CE 6.0 app not starting

I am porting an Win CE 6.0 app to a new hardware. The app doesn't start on both WIN CE 6.0 and WEC 7 on the new hardware. But if you first re-install the NETCFv35.wce.armv4.cab over the existing installation (force installation) then run the app, it…
MarifCA
  • 1
  • 1
0
votes
0 answers

Apache gzip not working

I am trying to enable apache to gzip responses. I am on Windows 7, using Apache 2.2. I have my own module mod_myModule.so that is serving requests comming from device (.NETCF3.5 client) and sending back SOAP response to the client. I did…
pixel
  • 9,653
  • 16
  • 82
  • 149
0
votes
1 answer

Apache gzip SOAP

I am new to Apache and I am trying to figure out how to enable gzip compression to send data over to clients (.NET Compact Framework devices). I am using Apache 2.2 and so far, I have enabled mod_deflate.so but my content send over netwrok is not…
pixel
  • 9,653
  • 16
  • 82
  • 149
0
votes
1 answer

Unit Test : VSTestHost.exe has stopped working. VS2008 Pro - Compact Framework

When trying to execute Unit Testing On a SmartDevice project on Visual Studio 2008 Pro, I get an error "VSTestHost.exe has stopped working". When debuging the Unit Test, I have the following exception FileNotFoundException and the stack trace is as…
Yahia
  • 805
  • 7
  • 25
0
votes
1 answer

1000th files failed to create in Window Mobile OS with could not evaluate expression error

I appreciate any help. I'm using a handheld device running on Window mobile 6.1 OS. I developed an C#.net application using .net compact framework to create 1000 of file with identical filename but different counter eg. 30.6.2015.test123.1.txt ->…
jwgan
  • 260
  • 2
  • 5
0
votes
1 answer

Nant build issue: Failed to initialize the Microsoft .NET compact framework

i have some problems regarding building .NET solution for handheld device using NAnt 0.92. The solution consists of typical csproj and CAB installer (vddproj). The target platform is .NET CF 3.5. However, if i set the target platform in the script…
Daniel KOcev
  • 11
  • 1
  • 3
0
votes
1 answer

list files in R by dates

I have a set of netcdf file that is organised by dates in my directory ( each file is one day of data). I read all the files in R using require(RNetCDF) files= list.files( ,pattern='*.nc',full.names=TRUE) When I run the codes R reads 2014 and…
nee
  • 125
  • 1
  • 11
0
votes
1 answer

Error running .NET CF 3.5 program in XP Embedded

I cannot run an application made for .net compact framework 3.5 in a POS with windows XP Embedded SP3, the error shown is "Unable to find a version of the runtime to run this application" so I checked over and over again and confirmed the .net…
hdkrus
  • 420
  • 1
  • 5
  • 13
0
votes
1 answer

C#: error trying to send file to self-hosted webservice using httpwebrequest

First of all, my server is a self-hosted c# webservice. It works well for my other applications, but now I have to implement a method in it that will be used by a mobile computer with Windows CE 5. I will need to receive a file in my server, so I've…
jRicardo
  • 804
  • 10
  • 20
0
votes
1 answer

.NET CF component with ActiveSync Protocol

I am looking a .NET CF component that supports Microsoft ActiveSync protocol v 2.x, on port 443 with Exchange 2013 email server for Motorola MC65.
0
votes
1 answer

How can I install CF 2.0 on my handheld device, and which version/architecture?

To install CF 2.0 on my handheld device (replacing the existing/unwanted version 3.5), according to this (straight from the horse's mouth), I need to run netcfsetupv2.msi from the following directory: \Program…
0
votes
1 answer

Do Project References with a Yield/Warning sign need to be updated, or can they be safely removed?

After a long hiatus away from it, I've returned to a project that targets the CF framework; the project has two references tagged with yellow "yield"/Warning glyphs (namely "ErikEJ.SqlCe.NetCF" and "Newtonsoft.Json.Compact"). The project compiles,…
0
votes
1 answer

Porting .NET CF 3.5 to 3.9 - What about SQLCE?

I'm planning to migrate a managed Windows CE 6 application to run on Windows Embedded Compact 2013. Currently, the app is based on .net CF 3.5 and as you know, WEC2013 includes .net CF 3.9 My app uses a file based database (.sdf) and now I've read…