Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008


all groups > dotnet compact framework > april 2005 > threads for monday april 25

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

Can I write to an embedded resource text file
Posted by JamesL at 4/25/2005 11:54:46 PM
If I include a text file as an embedded resource, can I write new data to the file and will that data be saved between shutdown and startup? If so, what tools should I focus my attention on for writing to the file? If not, can I copy the embedded file to a directory on the device and write ...more >>

Voice Recorder
Posted by hanz at 4/25/2005 10:34:18 PM
Hi all, I'm looking for a way how can I embed standard PPC VoiceRecorder into my application. I've found one from OpenNETCF but it works really strange - is it possible to embed it not like a window but like a control? Thanks in advance, Hanz ...more >>

How to simulate Wrap in NumericUpDown control
Posted by Vinay at 4/25/2005 10:28:03 PM
Hi All, I have a Pocket PC appln. with compact framework 1.0, I want to wrap the values when value reaches the max. like DomainUpDown control in NumericUpDown control Any there to help me out. rrgds, Vinay ...more >>

using protected methods in compact framework
Posted by Tommy at 4/25/2005 7:30:01 PM
I have managed to use the protected methods in the .net framework.. however i need to use the protected method ".Client". so as to get the local endpoint of the current connected socket. this is the code public class MyderivedTcpClient : TcpClient { // Constructor for the derived clas...more >>

Test Subject flyswatter
Posted by Fairweather at 4/25/2005 5:59:08 PM
Test flyswatter...more >>

Deploying to device
Posted by Nancy Kafer at 4/25/2005 2:38:50 PM
I have a smart device application written with VB .NET 2003. I am ready to deploy the project to my devices. What is the best way to do this? I need to be able to deploy to Pocket PC and Windows CE .NET devices (and anything new). Thanks Nancy ...more >>

Anchor
Posted by Matthias Heise at 4/25/2005 2:21:14 PM
Hello, under standard .NET Framwork each element in a form can have an anchor property that describes the behaviour of the element when the main form is resized. In Compact Framework this property does not seem to be supported. Is their any way to realize that without building an own resi...more >>

What si the best way to store a variable value between program shutdowns
Posted by James L at 4/25/2005 1:29:46 PM
I need to store a user entered value such that I still have it after shutting down the program and running it again. In my old eVb version I stored the value in a text file and just read it out again on startup of the program. Is there a better way in VB.NET? James ...more >>



How do you increment your build numbers?
Posted by Blarney at 4/25/2005 1:26:30 PM
Hi, I have always wondered how one goes about counting what number their build is on for just a program? For instance how does a company know that widget.exe is at version 3.0.1.2.2 so they can release it properly? ...more >>

Different framework versions of mscorlib when creating a dll
Posted by Earl at 4/25/2005 1:03:24 PM
When I created a dll to be used in multiple, the IDE selected the mscorlib file from the latest version of the full framework (F:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\mscorlib.dll). However, the class library will be used in the CompactFramework, and the main project I created there refe...more >>

Binary Serialization of decimal types
Posted by Chris Holmes at 4/25/2005 12:37:37 PM
I'm working on an application where we need to persist decimal values on a PocketPC device, but the Compact Framework doesn't support decimal types in the BinaryWriter/ BinaryReader classes, or even in the BitConverter class. Is there some nice, happy way to convert a decimal into it's byte a...more >>

Marshal.SizeOf
Posted by Linus Rörstad at 4/25/2005 12:04:34 PM
Hello! I'm having problems with getting the size of my own class. The exception I get is: Type SocketProtocol.Inparameters can not be marshaled as an unmanaged structure; no meaningful size or offset can be computed The class looks like this: public class Inparameters { public enum...more >>

[C#] How can I clear Messages Queue ?
Posted by Freddyboy at 4/25/2005 8:03:02 AM
Hi, I'd like to clear only the messages queue. Not with DoEvents. I found this : http://groups-beta.google.com/group/microsoft.public.dotnet.framework.compactframework/browse_thread/thread/3d9f996ba3a110d1/84c1ea607ae6b0b5?q=PeekMessage&rnum=1#84c1ea607ae6b0b5 But I don't know how I can use i...more >>

Changing the company name...
Posted by Lionel Reyero at 4/25/2005 5:26:03 AM
Hi, I can't find a way to change the company name of my .NET VS 2003 C# project. I have edited the AssemblyInfo.cs file, but it does no effect. I have also tried to find .INF files as it was adviced in previous topics, but I could not find any. When I open my CAB file, there are only files w...more >>

VS.Net 2003 and CF SP3
Posted by Sat Mann at 4/25/2005 4:55:03 AM
Hardware : Symbol PPT 8800 running CE .NET 4.1 I have a written an application for the above mentioned device and have noticed that some of the problems I was experiencing have been resolved in SP3. When I install SP3 onto the device my application will no longer run, I am getting Could...more >>

another question - GetCurrentDirectory
Posted by Matthias Heise at 4/25/2005 12:00:00 AM
Hello again, does anyone know why System.IO.Directory.GetCurrentDirectory() end in an "Unsupported Exception" in Windows CE .NET 4.1 Emulator? Thanks Matthias ...more >>

Is there any example show how to use USB device under Compact Framework
Posted by yy at 4/25/2005 12:00:00 AM
I want to access USB device under Compact Framework, Is there any example show how to do it, or there is no way to finish this work! Thanks forward! ...more >>


DevelopmentNow Blog