Tagged Questions
22
votes
10answers
3k views
What's the best way for a .NET winforms application to update itself without using ClickOnce?
For technical reasons, I can't use ClickOnce to auto-update my .NET application and its assemblies. What is the best way to handle auto-updating in .NET?
18
votes
4answers
627 views
Why does conditional AND (&&) appear to be non short-circuiting in this case?
While performing a check if there's a camera present and enabled on my windows mobile unit I encountered something I don't understand.
The code looks like this:
public static bool CameraP(){
...
10
votes
2answers
936 views
Detecting USB Connection — C# .Net CF 3.5
I have an application (.Net Compact Framework 3.5) running on a Windows Mobile 6.1 device and I want to detect when the USB connection changes (either something connects or disconnects).
I was ...
10
votes
3answers
633 views
Honeywell Dolphin 9500 (Pocket PC 2003) C# Event Handling Conflicts?
Environment
Windows XP x32 Visual Studio 2005 Standard Edition
Honeywell Dolphin 9500 running Windows Mobile 2003 (Pocket PC 2003)
With built in Barcode scanner and B&W camera
Using their SDK ...
10
votes
4answers
4k views
How do you get the proper mapping name from a binding source bound to a List<T>, or an anonymous type, to use on a DataGridTableStyle?
I'm trying to create a DataGridTableStyle object so that I can control the column widths of a DataGrid. I've created a BindingSource object bound to a List. Actually it's bound to an anonymous type ...
9
votes
2answers
408 views
How to create a DLL that will be used in C#
I have ICOP VDX-6354 board running Win CE. I'm trying to control the buzzer of the board from my C# program. I tried all the playsound etc "coredll.dll" platform invokes. none of them worked so far. ...
9
votes
5answers
6k views
.net Compact Framework 4.0
Will their be a new release of the compact framework with VS2010 and .net 4.0 and if so what new features will it include?
WPF?
linq to SQL?
etc
8
votes
2answers
284 views
Network connections only work if device connected via cable
Ok, I tried for the last couple hours and I give up:
I develop for a mobile device (Win CE on Unitech HT660) and have a weird thing occurring:
I try to communicate with a service on my PC and I'm ...
8
votes
3answers
5k views
How to run a function on a background thread for Windows Phone 7?
I'm using MVVM Light to build a WP7 (Windows Phone 7) application. I wish to have all the work performed by the Model to be run on a background thread. Then, when the work is done, raise an event so ...
8
votes
4answers
631 views
Is there any program that obfuscates C# source code?
Our requirement is being able to integrate our DLLs with ClickOnce. Dotfuscator does the obfuscation job nicely but the obfuscated DLLs cannot be deployed with ClickOnce on customer side. On our side, ...
8
votes
3answers
777 views
How can I implement a Wizard form a Windows Mobile application?
I am a bit new to Windows Mobile (with C# and the compact framework) development, so I am kind of unsure how to do this. The user has to go through several pages of information in a wizard-like ...
8
votes
1answer
5k views
How do I GetCustomAttributes?
I have tried the following code using the 2.0 framework and I get an attribute back, but when I try this on the compact framework, it always returns an empty array. The MSDN documenation says its ...
7
votes
5answers
3k views
Milliseconds in DateTime.Now on .NET Compact Framework always zero?
i want to have a time stamp for logs on a Windows Mobile project. The accuracy must be in the range a hundred milliseconds at least.
However my call to DateTime.Now returns a DateTime object with the ...
7
votes
8answers
1k views
What is the fastest way to insert 100 000 records from one database to another?
I have a mobile application. My client has a large data set ~100.000 records. It's updated frequently.
When we sync we need to copy from one database to another.
I have attached the second database ...
7
votes
3answers
22k views
Reading from the serial port in C#
I have tried using Readline() and data gets dropped, I tried using Read() but I am not sure how to have an error proof method of doing it, since I may get several packets one after another and I have ...
7
votes
8answers
8k views
In C#, how can I serialize System.Exception? (.Net CF 2.0)
I want to write an Exception to an MS Message Queue. When I attempt it I get an exception. So I tried simplifying it by using the XmlSerializer which still raises an exception, but it gave me a bit ...
7
votes
12answers
3k views
Compact Framework : any Finger Friendly GUI?
i m developing a little tool on my Pocket PC using WM6 SDK but i would like to implement a finger friendly user interface (iphone-like).
So i m looking for a free .NET framework that offers the ...
7
votes
8answers
1k views
Compact Framework - Is there an MVC framework/library available?
I've found an article on this subject by a Microsoft employee, but has anyone implemented a more robust framework for this? Is there a lightweight framework for WinForms that could be ported easily? ...
6
votes
1answer
110 views
Windows Mobile - Attach on call starting and recording a call
I need to implement a small feature in my project for windows mobile 6.0+ platform. I want to attach to an event when a phone call is answered and to record the 2 way call. I saw this question:
...
6
votes
1answer
345 views
How do you format an SD card using the Storage Manager API via Windows Mobile 6
Background:
I'm trying to create a utility that will allow our customers to easily format an SD card (actually mini-SD) directly on a Windows Mobile 6 device (Intermec CK3). This would be preferred ...
6
votes
3answers
160 views
How Can I Keep A C# Listview Control with Check Boxes from “Checking” on Row Selection?
Environment
Windows XP x32 Visual Studio 2005 Standard Edition
Honeywell Dolphin 9500 running Windows Mobile 2003 (Pocket PC 2003) With built in Barcode scanner and B&W camera Using their SDK ...
6
votes
7answers
416 views
Allowing iteration without generating any garbage
I have the following code in an object pool that implements the IEnumerable interface.
public IEnumerable<T> ActiveNodes
{
get
{
for (int i = 0; i < _pool.Count; i++)
...
6
votes
2answers
1k views
Array as DataSource of a DataGrid: how to customize columns?
In my Windows Mobile .NET application I have a simple array of object with the data I want to display in my DataGrid. To do this, I simply call:
myDataGrid.DataSource = myArray;
This works, but I ...
6
votes
4answers
789 views
C# CF: How to open specific file extension with my program
Im developing a mobile application in dot net Compact framework.
I managed to edit the registry HKEY_CLASSES_ROOT so that a click on file with .xyz extension will open my application. basically, i ...
6
votes
2answers
283 views
Where is IQueryable in the .NET Compact Framework?
I have started to develop a repository using LINQ to SQL against SQL CE in a Windows project. This works fine. However, when I went to port the code over to .NET CF for a Windows Mobile application, ...
6
votes
2answers
408 views
Remove readonly in Compact Framework
What is the preferred way to remove the readonly attribute of a file in Compact Framework as we don't have a File::SetAttributes?
Thank you!
6
votes
4answers
2k views
Best way to manage network state in Windows Mobile
I have a .NET Compact Framework 3.5 program that is used as a 'Occasionally Connected' line of business (LOB) application. If it can see an online webservice, it will use that for data access, but if ...
6
votes
1answer
3k views
.NET Compact Framework Printing libraries
Can anyone point to libraries that can be used for Printing from Compact .Net Framework 1.0?
Criteria:
I need to be able to print Text and Bar codes.
The library should preferably be upgradable to ...
6
votes
4answers
2k views
Compact Framework - how do I dynamically create type with no default constructor?
I'm using the .NET CF 3.5. The type I want to create does not have a default constructor so I want to pass a string to an overloaded constructor. How do I do this?
Code:
Assembly a = ...
5
votes
3answers
220 views
How to compile a library on .NET Framework & .NET Compact Framework?
I'm developing a technical library class that can be used on both types of Frameworks (Compact or not).
What is the best way to develop such library? Using by default the .NET features (for XP ...
5
votes
3answers
491 views
C# and remote database connection (using Compact)
I'm developing an application on a Windows CE Platform and this application need a connection to a remote database (Sybase ASE). This remote database is on the internal network.
How can I do this?
...
5
votes
3answers
493 views
Combo box in a scrollable panel causing problems
I have a panel with AutoScroll set to true. In it, I am programmatically adding ComboBox controls. If I add enough controls to exceed the viewable size of the panel a scroll bar appears (so far so ...
5
votes
7answers
2k views
How to reduce the size of an image in C# and .NET 3.5?
I have a screen shot I take in my mobile app. The screen shot takes about 32 KB when saved as a png on a disk.
I am sending these to a central SQL Server and 32 KB is too big for that amount of ...
5
votes
4answers
2k views
Know who got the focus in a Lost Focus event
Is it possible to know who got the focus in a lost focus event.
Compact Framework does not have a ActiveControl, so I don't know how to tell who got the focus.
I used this way of finding the ...
5
votes
13answers
181 views
How can create N items of a specific element in c#?
I am looking for a way to generate N pieces of question marks joined with comma.
string element="?";
string sep=",";
int n=4;
// code to run and create ?,?,?,?
EDIT 1
I am looking in a simple ...
5
votes
7answers
7k views
XML vs Binary performance for Serialization/Deserialization
I'm working on a compact framework application and need to boost performance. The app currently works offline by serializing objects to XML and storing them in a database. Using a profiling tool I ...
5
votes
5answers
7k views
Windows Mobile: using phone's camera with C#
I want to show the image that mobile phone's camera its taking on a control in a WinForm. The idea is that my application works like camera's program. I want to show the image like if the user is ...
5
votes
2answers
463 views
Ignoring queued mouse events
I have an application written in C# targeting .NET Compact Framework 3.5, running on Windows CE. From time to time, operations lasting for a second or so are being performed on the UI thread. I ...
5
votes
5answers
2k views
How to monitor microphone for noise sound?
I’m trying to find an algorithm to detect when the user blows into the microphone (like Ninentdo DS or iPhone) on a WM6 device with C#.
I was thinking to use Waveform to read from the mic in real ...
5
votes
3answers
1k views
How do you display the “cannot connect” dialog in windows mobile when a webservice URL is unreachable?
On windows mobile when there is no internet connection and I try to
browse the web using internet explorer i get cannot connect
information at the top of the screen. It says cannot connect with
...
4
votes
2answers
143 views
What is the use for a Mutex if you can't name it?
I am having a hard time figuring out what good a mutex is without naming it. Specifically I want to make my Windows Mobile 6.5 app single-instance.
There are a few questions and answers on this site ...
4
votes
1answer
74 views
Inversion of control on Compact Framework 2.0
I've been "googling" around about inversion of control on Compact Framework but most of solutions will work on 3.5 version.
Summarizing: I need a light-weight, simple inversion of control container ...
4
votes
1answer
91 views
XmlSerializer differs between .NET 3.5 & CF.NET 3.5
I've a library that turns under CF.NET & .NET but serialization differs between both. As a result, a XML file generated under CF.NET isn't readable under .NET, and that is a big problem for me !
...
4
votes
2answers
279 views
Action<T> delegate vs. event handler related to dispose
I am looking for architectural advice as well as deeper understanding of delegates and lambdas (in addition to needing to fix a real problem!)
We have code interacting with a device (a scale) via the ...
4
votes
4answers
580 views
BinaryFormatter does not exist in CF. Solutions?
I need to serialize/deserialize obj in/from byte[] on compact framework but there is no BinaryFormatter, what should i do?
Thanks.
This is the class i am using on the server side and i want it also on ...
4
votes
4answers
754 views
.NET CF Bitmap class quality is poor
I have some code that creates a graph using the Bitmap class. The quality of the produced bitmap, however, is pretty poor, how can I improve the quality of this? Note that I am using the Compact ...
4
votes
3answers
306 views
Passing a C# string to an unmanaged C DLL in Windows Mobile
I've got an unmanaged c++ DLL that I need to call from a Windows Mobile C# app.
I've got the C# wrapper and it works nicely in desktop. I can call the DLL functions from a C# desktop program and pass ...
4
votes
2answers
436 views
sql connection string problem
I have Database (compact sql server) in a *.sdf file.
I converted a compact framework project to a regular pc project and for some reason, with the same code, and the same *.sdf file the following ...
4
votes
3answers
1k views
How to validate X.509 Certificate in C# using Compact Framework
I am trying to validate an X.509 certificate using C# and .NetCF. I have the CA certificate, and if I understand correctly, I need to use the public key from this CA certificate to decrypt the ...
4
votes
1answer
487 views
How can I play .ogg, mp3, without Directsound libs in Windows CE 5.0 (Build 1400) in C#?
I've been facing a road block in trying to incorporate .ogg and .mp3 files in a WinCE 5.0 (build 1400) environment. Many of the answers I've found require some part of the Directsound libraries which ...