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 > january 2005 > threads for wednesday january 12

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 31

ArgumentException when create controls.
Posted by Hongary at 1/12/2005 4:45:06 PM
My Application made by sevral forms. Main form construct sevral forms in construction time. Click the button in Main form then hide Main form and show other form. Each form has many controls. (almost PictureBox and little panel, Label) But in creating time, other form's throw ArgumentExc...more >>


How do I determine when another process (an application or the OS) is killing my app?
Posted by Matt Young at 1/12/2005 4:42:48 PM
Problem: I need to save data before my application is closed by the OS or another application (killing my app). The two main scenarios I'm thinking about are, 1. The user navigates to Settings -> System tab -> Memory -> Running Programs and stops my app (PPC 2003) 2. The user navigates to a...more >>

Smart Device vs. Windows app
Posted by SteveInBeloit at 1/12/2005 3:35:02 PM
Hello, We are in need of developing an app on a Portable data collection device. The ones we are looking at run Win CE .NET. I can create simple VB .NET apps. In VS .NET I assume I need to create a Smart Device app now. How much different is this than doing a VB .NET app? Big differences...more >>

where do I put global data?
Posted by briforge at 1/12/2005 1:43:04 PM
I'm working on my first C# .NET app for PPC, coming from Palm development with c++. So far I've got a simple app with a couple forms. I want to store data in a class I've created which is accessible from all the different forms. In C++ I did that with global variables. How do I do that in ...more >>

upload image
Posted by Flair at 1/12/2005 1:19:34 PM
Now, I upload images from ppc to pc through webservice. But if few modifications are made to one image, then upload it, I think it's a high payload since the modified one is more or less the same as the original one. So anyone could give any suggestions if the goal is reducing payload? Thanks...more >>

TerminateProcess pinvoke
Posted by Jose at 1/12/2005 12:54:34 PM
Hello, I'm trying to grab the process id based on the window's Hwnd. I can get the process id correctly, but I can't figure out how to pass that into TerminateProcess. Assuming the call to GetWindowThreadProcessId() gets a valid procID, how can I use that to call TerminateProcess? Is my ...more >>

Test for network connection
Posted by Rich at 1/12/2005 12:48:51 PM
I aplogize for posting on a topic which I'm sure has already been discussed here, but I have searched the archives and not found a solution that works quite like I was hoping. I'm developing a Compact Framework application which needs to work in both "connected" and "disconnected" modes. The ...more >>

Good CF books (VB?)
Posted by schneider at 1/12/2005 12:38:36 PM
Any good CF books? VB specific is preferred, but C# is better than nothing. I use both C# and VB, prefer VB. XML serialization and FS/IO is my first job to tackle. Seem CF has a different serialization system? Thanks, Schneider...more >>



Run PPC/CE emulator in XP SP2
Posted by schneider at 1/12/2005 12:34:13 PM
How do I get the emulator to run in XP pro SP2. I checked the KB and only specifies a boit.ini fix by removing a command line switch which is not in my boot.ini. I recently purchase XP pro, which had SP2 on the disk. Previously was running win2000 with no issues. Thanks, Schneider...more >>

Date.ToString formatting for a culture
Posted by Brian Norman at 1/12/2005 12:11:03 PM
Hi Im sure im doing something silly here but I can't see what. Im trying to write the name of a day using a specific culture, in this case French. If the day is monday I want to write 'Lundi': System.DateTime.Today.ToString("dddd",new CultureInfo("fr")) It throws a 'NotSupportedExceptio...more >>

Is it an error ?
Posted by compboy at 1/12/2005 11:31:31 AM
error location: MemoryDll.dll!MemoryDll.MemoryForm.Memory_Load() line 234 C# (when i click a button, master program will call Memory_Load() function) prompt: unsettled: "System.ArgumentException" abnormity lie System.Windows.Forms.dll I run this application, there is no error in the pocket ...more >>

How to: Install a custom app on the Pocket PC
Posted by Harold at 1/12/2005 11:26:54 AM
OK, so I just bought an iPaq 4705. And I wrote a quick C# app in Visual Studio 2003 and was able to deploy it to both the emulator and the iPaq. When I deploy to the iPaq, the app only runs for a short while and there's no way to restart it. How do I install this app onto the iPaq? ...more >>

OpenNetCF TextBoxEx has no new properties - help!
Posted by dan_sommer at 1/12/2005 10:21:04 AM
I just downloaded smart device framework 1.2 from the OpenNetCF.org website. Everything appeared to install normally on my system but when I use the TextBoxEx control it doesn't have any of the new properties - it looks just like the plain TextBox control. I uninstalled the framework, reboot...more >>

PtInRegion
Posted by Chris at 1/12/2005 9:49:04 AM
I wanted to use PtInRegion with some polygons to check which polygon a point is in, however from what i can see, i need to set the polygons as regions first, and this involves the GraphicsPath object which is in the compact framework. Does anyone have any ideas about doing this?...more >>

.NET 2.0 CF bitmaps/icons for menu items
Posted by Jon Gabel at 1/12/2005 9:16:46 AM
Do any of you beta users of .NET 2.0 CF know if bitmaps/icons are supported for menu items in the new MenuStrip control? Regards, J G ...more >>

XmlTextWriter: Corrupt content
Posted by Strider at 1/12/2005 8:47:11 AM
Hello, I am using System.Xml.XmlTextWriter in my application in order to store some application settings to an xml file. The code goes like this ------------------------------------------------------ public void Write(string a_sConfigFilePath) { XmlTextWriter xmlWriter = null; ...more >>

How to copy a 70MB file from PC to Pocket PC in .NET CF
Posted by thoantm NO[at]SPAM fsoft.com.vn at 1/12/2005 5:55:55 AM
Dear all, I want to program a function for my PPC application, which will copy a 70MB data file from PC. Can I do it in .NET CF???? and HOW???? The problem here is: data file is too big-->my application might throw OutOfMemory Exception when copying file. It's really urgent, cause m...more >>

assigning DataSource for ListControl - performance
Posted by Michal Rizek at 1/12/2005 5:33:04 AM
Hi, i use SqlCeDataAdapter to load large amount of data for displaying in ComboBox and it is very slow. I found that SqlCeDataAdapter.Fill method takes only 1/3 of that time and it seems that assigning DataTable to ListControl.DataSource property creates a new copy of datasource i am assig...more >>

Hibernate()
Posted by Hari at 1/12/2005 5:33:03 AM
hi, yesterday i have posted a question regarding something strange. today i observed my application very closely and found that : whenever more memory consumption is there, the OS is trying to close my application and because of that, all the forms which i have kept in memory get closed a...more >>

Strange Text obscuring on form label ...
Posted by Zahid at 1/12/2005 3:27:04 AM
Hi, Ive encountered a very strange problem with my application. Initially I wrote the application to work on a QVGA mode resulotion (240*320) and all was well. I then rewrote the code to work for the VGA mode resolution (480*640) and started encountering a very strange problem with Labels...more >>

EnumWindows
Posted by tbcn at 1/12/2005 1:31:03 AM
Could anyone explain to me why this code doesn't work: [DllImport("coredll.dll")] private static extern bool EnumWindows(EnumWindowsProc func, int lParam); public delegate bool EnumWindowsProc(int hWnd, int lParam); private static bool EnumWnds(int hWnd, int lParam) { return true; } ...more >>


DevelopmentNow Blog