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
0 answers

Close all opened form in windows mobile 6.1 standard application

I am creating a windows mobile 6.1 standard application I want to know how to close all the forms which is opened with a single click. I use Application.Run(new frmLogin()); but it shows exception Value does not fall within the expected…
Abdul Adhar
  • 65
  • 10
1
vote
1 answer

Copy files from server to windows mobile

I am creating a windows mobile application in c#. I want to move files from http server to windows mobile. I dont know where and how to start? Can some one tell me ideas and share some links? I am using .net compact framework 3.5
1
vote
1 answer

MMF (Exclusive /non shared memory mapped file)

Our application runs on WinCE5.0 (written in .net cf) Because of certain reasons we had to create MMF file for use by our application (the MMF file should be used by our application only). Now what we noticed that at random times (we are not able to…
Lalit Singh Rana
  • 137
  • 1
  • 1
  • 10
1
vote
1 answer

How do I retrieve the OEM version of a Windows CE device in .NET Compact Framework 3.5?

I am developing applications for handheld terminals running Windows CE 6.0, using .NET Compact Framework 3.5. Is there a universal way to retrieve the OEM version (i.e. the "OEM Version" string seen in the "System Info" control panel applet), using…
Kal
  • 1,707
  • 15
  • 29
1
vote
0 answers

Bind a side key on Intermec CN50 PDA to specific action

I'm developing a Windows Mobile application for Windows Mobile 6.1 using C#, VS2008, .NET CF 3.5. I want the application to programmaticaly bind the PDA side button to a specific method in my application, so when the user presses this button, the…
0
votes
1 answer

variable = Class from Dictionary reset/clear var after use

I have a problem here with the Var "item", i call Method MyItems from a xml loop, and choose the class from Dictionary by key, for some reason the amount is correct but they are all from the same type/values/icons..... How could i reset , clear,…
manga
  • 105
  • 1
  • 8
0
votes
1 answer

SQL Client error on some devices but works on other

I'm connecting a Windows Mobile to MsSql server 2005 using System.SqlClient It works great on some devices but not on other. May it be a issue on the database? This error happens when I try to execute a reader. the Open does…
Ezi
  • 2,212
  • 8
  • 33
  • 60
0
votes
1 answer

How to create exclusive panel

I would like to create a panel where only one control can be enabled at a time. It should work just the way radio buttons do. The idea is something like that: class XClusivePanel : Panel { // Init code // Use this in order to add Exclusive…
Cristiano
  • 856
  • 10
  • 24
0
votes
2 answers

How to select displayed columns in datagrid

I'm working on a .NET Compact Framework 3.5 app that includes a DataGrid. I've created a BindingSource using the designer and added the bindingsource as the source of the datagrid. It automatically created columns for every suitable property of my…
Eren Ersönmez
  • 38,383
  • 7
  • 71
  • 92
0
votes
1 answer

File system operations (e.g. copy, delete, move) performed through ActiveSync - are they atomic?

I am developing an application in .NET Compact Framework 3.5, for Windows CE 6. I need to automate some data synchronization between the mobile application and a PC. So what I do is that, in the .NETCF application, I have a while loop that checks…
Kal
  • 1,707
  • 15
  • 29
0
votes
1 answer

.NET how to change windows default font?

I wanted to change the MessageBox font in my .NET CF application and found that it's not that easy (and even impossible). some adviced to change the default font of windows , cause MessageBox uses that. the handy way is : Desktop…
losingsleeep
  • 1,849
  • 7
  • 29
  • 46
0
votes
1 answer

is there Windows services on winCE?

is there something like Windows Services for WinCE 6.0 OS?, I mean, a background process thread(s) doing their things... I need to develop a programm on .NETCF thay always listens to a specific port on device, stores it on SQL Server compact…
Juan Jimenez
  • 5,812
  • 6
  • 28
  • 37
0
votes
1 answer

Windows Mobile 6.5 Motorola MC75 no Input Panel and Close Button

I am writing Windows Mobile 6.5 Application for the first time for Motorola MC75 Devices. I am using UserControls for each screens, and single "HomeForm", Problems I am facing are:- No Close button anwhere on device. No Keyboard (Input Panel)…
0
votes
0 answers

C# - Is it possible to make excel files readonly / non-editable / password protected using Compact Framework 3.5?

So, I have this console (from Beijer - uses ixDeveloper) and it uses CF 3.5. It is somewhat limited, so I am trying to do what I can with scripts (in C#). Right now, I have an Excel file regarding an Audit Trail and it has to be non editable. I can…
0
votes
1 answer

Detecting mouse/stylus clicks with C# on a combobox in .NET CF

I´m trying to detect when a combobox in my Windows Mobile application is hit by a mouse click. Unfortunately this component in .NET CF2.0 doesn´t have a MouseClick event (whereas Desktop .NET does). Does someone have an idea of how to catch…
LucasBr
  • 461
  • 1
  • 7
  • 19