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

Error on trying add UserControl into my Form

I'm having trouble on adding a UserControl to my Form. UserControl Code: using System; using System.Windows.Forms; namespace Most.Mobile.AFV.UI.Controls { public partial class ListActionBar : UserControl { public ListActionBar() …
ridermansb
  • 10,779
  • 24
  • 115
  • 226
1
vote
1 answer

Multi-target with .NET Compact Framework 3.5 using new .csproj format?

Is there a way to target .NET Compact Framework 3.5 with the new .csproj file format? I want to be able to target the following frameworks: netstandard2.0;netstandard1.0;net45;net40;net35;net35-cf What I've done…
feO2x
  • 5,358
  • 2
  • 37
  • 46
1
vote
0 answers

Visual Studio replaces DataTable with TypedTableBase

Using Visual Studio 2008 in order to compile for Windows Mobile 6 devices, I get an issue where changing anything involved in a DataSet results in the error genasm.exe(1): error There was an error finalizing type. GenericArguments[0],…
Trevortni
  • 688
  • 8
  • 23
1
vote
1 answer

Visual studio designer saves everything to .resx instead of .designer.cs

I have just got a project handed to me where the Visual Studio Windows Forms designer saves most of the properties to the .resx-file instead of the .designer.cs file as usual. Its really irritating when .size and .location is placed in the .resx. Is…
1
vote
2 answers

HttpWebRequest throws ConnectFailure on the real device but not on emulator for Windows Handheld 6.5

I'm having similar issues to this link No Internet on the device via code I am working on the Intermec iRoc Ci70 device which is running on Windows Handheld Embedded 6.5. This device has the 802.11abgn Wireless LAN adapter. On the device emulators…
1
vote
1 answer

How to Configure SQLCE connection on Smart Device Application using Emulator?

I created a simple test that opens a connection of sqlce located on my Desktop P.C. When i start Run the debug mode it throws me that it cant open the connection. I use Pocket P.C 2003 EMULATOR This is my Test Code on my Smart Device…
Crimsonland
  • 2,194
  • 3
  • 24
  • 42
1
vote
2 answers

convert a Non-displayable ASCII array to decimal

I receive a byte array serial_port[4] {0x00, 0xA0, 0x05, 0xB1} from my serial port as below: string rec_data += sp.ReadExisting(); and I need to convert this string to a decimal value by using: byte[] Temp =…
1
vote
0 answers

GZip .NET Compact Framework 3.5

I am trying to send and receive process gzip-ed data from server on my client device application (not web). I am sending gzip-ed content and on client side, I have following method that returns WebResponse: protected override WebResponse…
pixel
  • 9,653
  • 16
  • 82
  • 149
1
vote
0 answers

.NET CF 3.5 why calling ShowDialog() twice works?

I had a problem in .net compact 3.5 where my dialog closed immediately after being shown with .ShowDialog(). Then I found a workaround to call it twice. It helped, but I have no idea why. I mean why would executing the same operation twice would…
Ernis
  • 645
  • 11
  • 22
1
vote
1 answer

SoapHttpClientProtocol throws ConnectFailure despite having successfully sent message on WM 6.5 with .NET CF 3.5

Here's a knotty one. This is a Windows Mobile 6.5 device running the .net Compact Framework 3.5.9085.00 with a simple auto-generated web service call via an automatically generated SOAP proxy, a subclass of System.Net.SoapHttpClientProtocol (C#) The…
1
vote
0 answers

Transparent PNG in .NET CF

in Compact Framework transparent PNG's (or any other image format) are not supported. I tought there are ways to achieve this by using OpenNETCF, but somehow I don't get it to work. I want it to behave like in the normal .NET Framework. Did I miss…
El Mac
  • 3,256
  • 7
  • 38
  • 58
1
vote
0 answers

Memory increases while performing only Open/Close SQL Server CE database connection on Win CE 6.0 R3 board

I have .Net CF 3.5 C# console application on Win CE 6.0 R3 OS and ARM 4i processor with 64 MB RAM and SQL Server CE 3.5 database in my device. I am using 3 tier architecture My project BLL DAL In the DAL, I am only creating an object of…
Vijay_007
  • 11
  • 2
1
vote
3 answers

Disable or Enable phone radio in windows mobile 6.5.3

I would like to enable or disable phone radio in low connectivity areas. Is it possible to do this? I am using motorola ES400 for development.
1
vote
1 answer

Consuming WCF service from windows ce 5.0

I am experiencing a strange problem. I know there are quite a few questions about WCF around, but I am almost sure I have already seen the majority of them and cant solve my problem yet. The problem is, I have a WCF service up and running on the…
user3640553
  • 23
  • 2
  • 9
1
vote
0 answers

CameraCaptureDialog throws error on ShowDialog

I hope someone can help me with this issue. I have a simple application written in VS2008, .NETCF 3.5, C#. The application has one form and one button on it. The issue is happening on device that supports camera (Motorola MC9590). The button…
d.b
  • 95
  • 2
  • 9