First  |  Prev |  Next  |  Last
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Changing File Attributes in CF
As the convenient File.SetAttribute() and File.GetAttribute() do not exist in the compact framework, I thought I'd share another method of changing file attributes using FileInfo: FileInfo fileInf = new FileInfo(myFilePath); if ((fileInf.Attributes & FileAttributes.ReadOnly) == FileAttr... 18 Feb 2010 18:30
Combobox scroll issue
Hi, I have an issue which is relatively in all the comboboxes I'm using in my application. I'm using .net CF 3.5 on windows mobile 5, the device is an ipaq hx2790b. My combobox is loaded from a dataset, using the combobox.Items.Add, method and then the selectedindex is seto to 0, everything works fine until... 17 Feb 2010 16:48
this.Font
This posting relates to C# under Windows CE 6.0 R2. We used "this.Font" in a class derived from Control. The this.Font object was passed to Graphics.DrawString as an argument in the Paint handler. If we force several paints, PowerToys Logging Options with "Finalizer" checked shows a Font object being finalized ... 16 Feb 2010 22:54
FileStream Bug
Better late than never... I discovered this bug last month and it is fixed in the Jan 2010 rollup. Essentially this is a problem with the internal .NetCF seek pointer getting out of sync with the OS seek pointer. You can find the fix described at http://www.microsoft.com/downloads/details.aspx?displaylang=e... 16 Feb 2010 22:54
Running unit tests for compact framework applications
Hi, Is there any way to run .net CF application unit tests on a PC or a VS Team System Server without an emulator? I would like to leverage the code coverage capabilities of recent versions of VS Team Systems. Does anybody have any experience running automated regression tests on a CF application? Since... 20 Feb 2010 21:21
Regarding the problem
I found out that the nasty behavior of ReadOnly property has to do with the t9 dictionary input style. That is, my Assus PDA works in t9 dictionary mode when typing. In this mode, the editing is not prevented. Not sure if this is the only case when this faulty behavior occurs. Adrian Rotaru wrote: ReadO... 16 Feb 2010 18:23
verify signature from cab using RSACryptoServiceProvider ?
windows ce 5, cf v3.5 i try to verify the signature of a signed cab-file (with certificate) programmatically i would use these steps : 1) build a signed cab with vs2008 2) get the cab into device 3) my app verifies the signature of the cab using a certificate (calc the hash of the cab and compare with si... 17 Feb 2010 03:25
How to use the RSACryptoServiceProviderin the CompactFramework
I'm trying to use RSA encryption in the compact framework (v2.0) and hope that someone can help me. I've been working off the MSDN example which can be found here: http://msdn.microsoft.com/en-us/library/system.security.cryptography.rsacryptoserviceprovider.aspx In order to load key information, a method call... 20 Feb 2010 21:21
Nativewindows
is System.Windows.Forms.NativeWindow supported in ..net compact framework 2.0? or 3.5? Thanks!, Carlos ... 12 Feb 2010 08:56
Webbrowser and images
Hi, it seems that webbrowser ignores attributes width/height for <img/> I've page contains: <img src="http://someserver/somepicture.jpg" width="216" height="36" style="border: 0px"/> on device/emulator with 'low' resolution (240x320) this picture looks fine. On device/emulator with 'high' resolution (for exampl... 7 Feb 2010 18:44
First  |  Prev |  Next  |  Last
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20